Merge pull request #961 from Blizzard/x64-support
add 64-bit support on windows
This commit is contained in:
commit
3022b5509d
@ -94,7 +94,7 @@
|
||||
configurations { "Release", "Debug" }
|
||||
location ( _OPTIONS["to"] )
|
||||
|
||||
flags { "No64BitChecks", "StaticRuntime", "MultiProcessorCompile" }
|
||||
flags { "StaticRuntime", "MultiProcessorCompile" }
|
||||
warnings "Extra"
|
||||
|
||||
if not _OPTIONS["no-zlib"] then
|
||||
@ -104,6 +104,9 @@
|
||||
defines { "CURL_STATICLIB", "PREMAKE_CURL"}
|
||||
end
|
||||
|
||||
filter { 'system:windows' }
|
||||
platforms { 'x86', 'x64' }
|
||||
|
||||
filter "configurations:Debug"
|
||||
defines "_DEBUG"
|
||||
flags { "Symbols" }
|
||||
@ -119,10 +122,6 @@
|
||||
filter { "system:windows", "configurations:Release" }
|
||||
flags { "NoIncrementalLink", "LinkTimeOptimization" }
|
||||
|
||||
filter { "system:macosx", "action:gmake" }
|
||||
buildoptions { "-mmacosx-version-min=10.4" }
|
||||
linkoptions { "-mmacosx-version-min=10.4" }
|
||||
|
||||
project "Premake5"
|
||||
targetname "premake5"
|
||||
language "C"
|
||||
|
Reference in New Issue
Block a user