summaryrefslogtreecommitdiffstatshomepage
path: root/scripts/src
diff options
context:
space:
mode:
author couriersud <couriersud@arcor.de>2015-04-25 14:13:38 +0200
committer couriersud <couriersud@arcor.de>2015-04-25 14:13:38 +0200
commit6ddcf53550caa32be40fbace515c4ee07f69ad9e (patch)
tree821a8a1d7a8618ce81d8a28bb86f45ef40516fc2 /scripts/src
parent0fbbb8234240ad34c646cbef67af62700b156e83 (diff)
parent3a37417a6ba315f237c2db958e337a8493def5eb (diff)
Merge branch 'master' of https://github.com/mamedev/mame.git
Diffstat (limited to 'scripts/src')
-rw-r--r--scripts/src/main.lua36
1 files changed, 36 insertions, 0 deletions
diff --git a/scripts/src/main.lua b/scripts/src/main.lua
index a109bea87dd..80e3d1bf09a 100644
--- a/scripts/src/main.lua
+++ b/scripts/src/main.lua
@@ -28,6 +28,42 @@ function mainProject(_target, _subtarget)
"Unicode",
}
+ 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" }
+ targetsuffix ""
+ if _OPTIONS["PROFILE"] then
+ targetsuffix "p"
+ end
+
+ configuration { "Native", "Debug" }
+ targetsuffix "d"
+ if _OPTIONS["PROFILE"] then
+ targetsuffix "dp"
+ end
+
configuration { "mingw*" or "vs*" }
targetextension ".exe"