mirror of
https://github.com/mamedev/mame.git
synced 2024-11-16 07:48:32 +01:00
use target suffixes only for main executable (nw)
This commit is contained in:
parent
371096e892
commit
3a37417a6b
2 changed files with 36 additions and 38 deletions
|
@ -428,44 +428,6 @@ configuration { "gmake" }
|
|||
"SingleOutputDir",
|
||||
}
|
||||
|
||||
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 { }
|
||||
|
||||
dofile ("toolchain.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"
|
||||
|
||||
|
|
Loading…
Reference in a new issue