diff options
Diffstat (limited to 'scripts/src/main.lua')
-rw-r--r-- | scripts/src/main.lua | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/scripts/src/main.lua b/scripts/src/main.lua index c638c852350..a5d6cc4f915 100644 --- a/scripts/src/main.lua +++ b/scripts/src/main.lua @@ -121,12 +121,6 @@ end if (STANDALONE~=true) then findfunction("linkProjects_" .. _OPTIONS["target"] .. "_" .. _OPTIONS["subtarget"])(_OPTIONS["target"], _OPTIONS["subtarget"]) end - links { - "osd_" .. _OPTIONS["osd"], - } - links { - "qtdbg_" .. _OPTIONS["osd"], - } if (STANDALONE~=true) then links { "frontend", @@ -136,6 +130,12 @@ end "optional", "emu", } + links { + "osd_" .. _OPTIONS["osd"], + } + links { + "qtdbg_" .. _OPTIONS["osd"], + } --if (STANDALONE~=true) then links { "formats", |