Merge pull request #961 from Blizzard/x64-support

add 64-bit support on windows
This commit is contained in:
Manu Evans 2017-11-30 15:49:05 -08:00 committed by GitHub
commit 3022b5509d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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"