diff options
author | 2021-01-27 11:29:25 +1100 | |
---|---|---|
committer | 2021-01-27 11:29:25 +1100 | |
commit | 2c041520acb29c8330e96a2713ce720e1e380018 (patch) | |
tree | 3e89b8c08d3cdb25ba0fbd2975bdc548207c09b8 /docs/release/scripts/src/main.lua | |
parent | d5407444774ae45feb53a3e5927880a3def3d55c (diff) |
0.228 Release filestag228
Diffstat (limited to 'docs/release/scripts/src/main.lua')
-rw-r--r-- | docs/release/scripts/src/main.lua | 26 |
1 files changed, 4 insertions, 22 deletions
diff --git a/docs/release/scripts/src/main.lua b/docs/release/scripts/src/main.lua index f9c52f2b9eb..135cc9a4a48 100644 --- a/docs/release/scripts/src/main.lua +++ b/docs/release/scripts/src/main.lua @@ -98,37 +98,19 @@ 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" } + configuration { "x64","Release" } targetsuffix "" if _OPTIONS["PROFILE"] then targetsuffix "p" end - configuration { "x32", "Debug" } - targetsuffix "d" - if _OPTIONS["PROFILE"] then - targetsuffix "dp" - end - - configuration { "Native", "Release" } - targetsuffix "" + configuration { "x32","Release" } + targetsuffix "32" if _OPTIONS["PROFILE"] then targetsuffix "p" end - configuration { "Native", "Debug" } + configuration { "Debug" } targetsuffix "d" if _OPTIONS["PROFILE"] then targetsuffix "dp" |