-
Notifications
You must be signed in to change notification settings - Fork 74
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #119 from h1-mod/develop
v1.0.3
- Loading branch information
Showing
25 changed files
with
471 additions
and
86 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 0 additions & 4 deletions
4
data/ui_scripts/extra_gamemodes/__init__.lua → data/ui_scripts/patches/gamemodes.lua
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule asmjit
updated
3 files
+1 −1 | src/asmjit/core/codebuffer.h | |
+69 −2 | src/asmjit/core/jitallocator.cpp | |
+1 −1 | src/asmjit/core/rabuilders_p.h |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
curl = { | ||
source = path.join(dependencies.basePath, "curl"), | ||
} | ||
|
||
function curl.import() | ||
links { "curl" } | ||
|
||
filter "toolset:msc*" | ||
links { "Crypt32.lib" } | ||
filter {} | ||
|
||
curl.includes() | ||
end | ||
|
||
function curl.includes() | ||
filter "toolset:msc*" | ||
includedirs { | ||
path.join(curl.source, "include"), | ||
} | ||
|
||
defines { | ||
"CURL_STRICTER", | ||
"CURL_STATICLIB", | ||
"CURL_DISABLE_LDAP", | ||
} | ||
filter {} | ||
end | ||
|
||
function curl.project() | ||
if not os.istarget("windows") then | ||
return | ||
end | ||
|
||
project "curl" | ||
language "C" | ||
|
||
curl.includes() | ||
|
||
includedirs { | ||
path.join(curl.source, "lib"), | ||
} | ||
|
||
files { | ||
path.join(curl.source, "lib/**.c"), | ||
path.join(curl.source, "lib/**.h"), | ||
} | ||
|
||
defines { | ||
"BUILDING_LIBCURL", | ||
} | ||
|
||
filter "toolset:msc*" | ||
|
||
defines { | ||
"USE_SCHANNEL", | ||
"USE_WINDOWS_SSPI", | ||
"USE_THREADS_WIN32", | ||
} | ||
|
||
filter "toolset:not msc*" | ||
|
||
defines { | ||
"USE_GNUTLS", | ||
"USE_THREADS_POSIX", | ||
} | ||
|
||
filter {} | ||
|
||
warnings "Off" | ||
kind "StaticLib" | ||
end | ||
|
||
table.insert(dependencies, curl) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.