diff options
Diffstat (limited to 'docs/release/scripts/src/tests.lua')
-rw-r--r-- | docs/release/scripts/src/tests.lua | 28 |
1 files changed, 2 insertions, 26 deletions
diff --git a/docs/release/scripts/src/tests.lua b/docs/release/scripts/src/tests.lua index 6d964737079..89c8c976c39 100644 --- a/docs/release/scripts/src/tests.lua +++ b/docs/release/scripts/src/tests.lua @@ -21,37 +21,13 @@ project("mametests") targetdir(MAME_DIR) end - 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" |