blob: 0bb6d887d40905adf4aa91bf6afe5894f8cbe81c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
Remove suffixes from mame binary for debug/profile builds.
--- scripts/src/main.lua.orig 2025-09-24 14:56:11 UTC
+++ scripts/src/main.lua
@@ -71,13 +71,13 @@ end
configuration { "Release" }
targetsuffix ""
if _OPTIONS["PROFILE"] then
- targetsuffix "p"
+ targetsuffix ""
end
configuration { "Debug" }
- targetsuffix "d"
+ targetsuffix ""
if _OPTIONS["PROFILE"] then
- targetsuffix "dp"
+ targetsuffix ""
end
configuration { "mingw*" or "vs20*" }
|