diff options
Diffstat (limited to 'scripts/src/osd/sdl_cfg.lua')
-rw-r--r-- | scripts/src/osd/sdl_cfg.lua | 36 |
1 files changed, 12 insertions, 24 deletions
diff --git a/scripts/src/osd/sdl_cfg.lua b/scripts/src/osd/sdl_cfg.lua index bdeb7274ef1..2dc1a7e465a 100644 --- a/scripts/src/osd/sdl_cfg.lua +++ b/scripts/src/osd/sdl_cfg.lua @@ -56,12 +56,18 @@ if _OPTIONS["NO_USE_MIDI"]~="1" and _OPTIONS["targetos"]=="linux" then } end -defines { - "SDLMAME_SDL2=1", -} -if _OPTIONS["SDL2_MULTIAPI"]=="1" then +if _OPTIONS["SDL_LIBVER"]=="sdl2" then + defines { + "SDLMAME_SDL2=1", + } + if _OPTIONS["SDL2_MULTIAPI"]=="1" then + defines { + "SDL2_MULTIAPI", + } + end +else defines { - "SDL2_MULTIAPI", + "SDLMAME_SDL2=0", } end @@ -75,7 +81,7 @@ if BASE_TARGETOS=="unix" then "SDLMAME_UNIX", } if _OPTIONS["targetos"]=="macosx" then - if _OPTIONS["USE_LIBSDL"]~="1" then + if _OPTIONS["MACOSX_USE_LIBSDL"]~="1" then buildoptions { "-F" .. _OPTIONS["SDL_FRAMEWORK_PATH"], } @@ -145,21 +151,3 @@ elseif _OPTIONS["targetos"]=="os2" then backtick(sdlconfigcmd() .. " --cflags"), } end - -configuration { "osx*" } - includedirs { - MAME_DIR .. "3rdparty/bx/include/compat/osx", - } - -configuration { "freebsd" } - includedirs { - MAME_DIR .. "3rdparty/bx/include/compat/freebsd", - } - -configuration { "netbsd" } - includedirs { - MAME_DIR .. "3rdparty/bx/include/compat/freebsd", - } - -configuration { } - |