diff options
author | 2021-01-26 15:37:11 +1100 | |
---|---|---|
committer | 2021-01-26 15:37:11 +1100 | |
commit | adc23f3f74f64afa3a1258539a4f8ae2f7ae76c9 (patch) | |
tree | 53a4c85b8a2824a865b70c819044fbf9d3f1bac4 /scripts/src/main.lua | |
parent | 39ed223cf8afd8f406697b5a758e22f20347bffc (diff) |
Goodbye 64 suffix on the main executable, it was nice knowing you.
If you want to build 64-bit and 32-bit in the same tree without them
stomping on each other, use SEPARATE_BIN=1 (you already need to do this
for TOOLS=1 anyway).
Diffstat (limited to 'scripts/src/main.lua')
-rw-r--r-- | scripts/src/main.lua | 28 |
1 files changed, 2 insertions, 26 deletions
diff --git a/scripts/src/main.lua b/scripts/src/main.lua index 46f23a256e5..256a99c690f 100644 --- a/scripts/src/main.lua +++ b/scripts/src/main.lua @@ -98,37 +98,13 @@ end configuration "**/*" flags { "DeploymentContent" } - configuration { "x64", "Release" } - targetsuffix "64" - if _OPTIONS["PROFILE"] then - targetsuffix "64p" - end - - configuration { "x64", "Debug" } - targetsuffix "64d" - if _OPTIONS["PROFILE"] then - targetsuffix "64dp" - end - - configuration { "x32", "Release" } - targetsuffix "" - if _OPTIONS["PROFILE"] then - targetsuffix "p" - end - - configuration { "x32", "Debug" } - targetsuffix "d" - if _OPTIONS["PROFILE"] then - targetsuffix "dp" - end - - configuration { "Native", "Release" } + configuration { "Release" } targetsuffix "" if _OPTIONS["PROFILE"] then targetsuffix "p" end - configuration { "Native", "Debug" } + configuration { "Debug" } targetsuffix "d" if _OPTIONS["PROFILE"] then targetsuffix "dp" |