summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-rw-r--r--scripts/genie.lua3
-rw-r--r--scripts/src/main.lua7
-rw-r--r--scripts/src/osd.lua5
3 files changed, 11 insertions, 4 deletions
diff --git a/scripts/genie.lua b/scripts/genie.lua
index 8f1c1a81a57..7203e059a57 100644
--- a/scripts/genie.lua
+++ b/scripts/genie.lua
@@ -501,9 +501,6 @@ configuration { "osx*" }
"SDL2.framework",
"pthread",
}
- linkoptions {
- "-sectcreate __TEXT __info_plist " .. GEN_DIR .. "/osd/sdl/" .. _OPTIONS["target"] .. "-Info.plist"
- }
configuration { "mingw*" }
diff --git a/scripts/src/main.lua b/scripts/src/main.lua
index aa939c1f115..360749f3a80 100644
--- a/scripts/src/main.lua
+++ b/scripts/src/main.lua
@@ -14,6 +14,11 @@ function mainProject(_target, _subtarget)
"NoManifest",
}
+ configuration { "osx*" }
+ linkoptions {
+ "-sectcreate __TEXT __info_plist " .. GEN_DIR .. "/osd/sdl/" .. _OPTIONS["target"] .. "-Info.plist"
+ }
+
configuration { "mingw*" }
if _OPTIONS["osd"]=="sdl" then
targetprefix "sdl"
@@ -73,7 +78,7 @@ function mainProject(_target, _subtarget)
MAME_DIR .. "3rdparty/zlib",
GEN_DIR .. "mame/layout",
GEN_DIR .. "ldplayer/layout",
- GEN_DIR .. "osd/windows",
+ GEN_DIR .. "osd/windows",
}
includeosd()
diff --git a/scripts/src/osd.lua b/scripts/src/osd.lua
index 20cfccc28c6..ed2c0bd7046 100644
--- a/scripts/src/osd.lua
+++ b/scripts/src/osd.lua
@@ -193,6 +193,11 @@ project ("ocore_" .. _OPTIONS["osd"])
--else
MAME_DIR .. "src/osd/modules/sync/work_osd.*",
}
+ if _OPTIONS["targetos"]=="macosx" then
+ files {
+ MAME_DIR .. "src/osd/sdl/osxutils.m",
+ }
+ end
end
if _OPTIONS["osd"]=="windows" then
includedirs {