diff options
author | 2016-01-16 12:24:11 +0100 | |
---|---|---|
committer | 2016-01-16 14:54:42 +0100 | |
commit | 1f90ceab075c4869298e963bf0a14a0aac2f1caa (patch) | |
tree | 49984b30e3c6da6a0be068dbfcd02882bdafdc08 /scripts/genie.lua | |
parent | 34161178c431b018cba0d0286951c69aee80e968 (diff) |
tags are now strings (nw)
fix start project for custom builds in Visual Studio (nw)
Diffstat (limited to 'scripts/genie.lua')
-rw-r--r-- | scripts/genie.lua | 18 |
1 files changed, 11 insertions, 7 deletions
diff --git a/scripts/genie.lua b/scripts/genie.lua index 377116aae47..4dadebb50df 100644 --- a/scripts/genie.lua +++ b/scripts/genie.lua @@ -1249,15 +1249,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 |