mirror of
https://github.com/holub/mame
synced 2025-04-21 07:52:35 +03:00
fix start project for custom builds in Visual Studio (nw)
This commit is contained in:
parent
cac513508f
commit
2ac3018ee7
@ -1258,15 +1258,19 @@ findfunction("createProjects_" .. _OPTIONS["target"] .. "_" .. _OPTIONS["subtarg
|
||||
|
||||
group "emulator"
|
||||
dofile(path.join("src", "main.lua"))
|
||||
if (_OPTIONS["target"] == _OPTIONS["subtarget"]) then
|
||||
startproject (_OPTIONS["target"])
|
||||
else
|
||||
if (_OPTIONS["subtarget"]=="mess") then
|
||||
startproject (_OPTIONS["subtarget"])
|
||||
if (_OPTIONS["SOURCES"] == nil) then
|
||||
if (_OPTIONS["target"] == _OPTIONS["subtarget"]) then
|
||||
startproject (_OPTIONS["target"])
|
||||
else
|
||||
startproject (_OPTIONS["target"] .. _OPTIONS["subtarget"])
|
||||
if (_OPTIONS["subtarget"]=="mess") then
|
||||
startproject (_OPTIONS["subtarget"])
|
||||
else
|
||||
startproject (_OPTIONS["target"] .. _OPTIONS["subtarget"])
|
||||
end
|
||||
end
|
||||
end
|
||||
else
|
||||
startproject (_OPTIONS["subtarget"])
|
||||
end
|
||||
mainProject(_OPTIONS["target"],_OPTIONS["subtarget"])
|
||||
|
||||
if (_OPTIONS["STRIP_SYMBOLS"]=="1") then
|
||||
|
Loading…
Reference in New Issue
Block a user