diff options
author | 2021-02-24 11:03:56 +1100 | |
---|---|---|
committer | 2021-02-24 11:03:56 +1100 | |
commit | 7a5dd4a3cf3cea64a8fa88ea6bd51811647e2b20 (patch) | |
tree | 469735c78bb9b64f9f97d46a3200ed0378ef8910 /docs/release/scripts/src/main.lua | |
parent | a2591d1f03cf97d12a6af6b1b7315d0cb6badfab (diff) |
0.229 Release filestag229
Diffstat (limited to 'docs/release/scripts/src/main.lua')
-rw-r--r-- | docs/release/scripts/src/main.lua | 18 |
1 files changed, 12 insertions, 6 deletions
diff --git a/docs/release/scripts/src/main.lua b/docs/release/scripts/src/main.lua index 135cc9a4a48..ddf4d9c9c8d 100644 --- a/docs/release/scripts/src/main.lua +++ b/docs/release/scripts/src/main.lua @@ -98,22 +98,28 @@ end configuration "**/*" flags { "DeploymentContent" } - configuration { "x64","Release" } + configuration { "x64", "Release" } targetsuffix "" if _OPTIONS["PROFILE"] then targetsuffix "p" end - configuration { "x32","Release" } + configuration { "x64", "Debug" } + targetsuffix "d" + if _OPTIONS["PROFILE"] then + targetsuffix "dp" + end + + configuration { "x32", "Release" } targetsuffix "32" if _OPTIONS["PROFILE"] then - targetsuffix "p" + targetsuffix "32p" end - configuration { "Debug" } - targetsuffix "d" + configuration { "x32", "Debug" } + targetsuffix "32d" if _OPTIONS["PROFILE"] then - targetsuffix "dp" + targetsuffix "32dp" end configuration { "mingw*" or "vs20*" } |