Previous 199869 Revisions Next

r36775 Sunday 29th March, 2015 at 17:10:46 UTC by Miodrag Milanović
Merge branch 'master' of https://github.com/mamedev/mame
[scripts]genie.lua
[scripts/src/osd]sdl.lua sdl_cfg.lua windows.lua windows_cfg.lua

trunk/scripts/genie.lua
r245286r245287
718718
719719
720720configuration { "mingw*" }
721      defines {
722         "main=utf8_main",
723      }
724721      linkoptions {
725722         "-static-libgcc",
726723         "-static-libstdc++",
727         "-municode",
728724      }
729725if _OPTIONS["osd"]=="sdl" then
730726      links {
r245286r245287
752748
753749configuration { "vs*" }
754750      defines {
755         "main=utf8_main",
756      }
757      defines {
758751         "XML_STATIC",
759752         "WIN32",
760753         "_WIN32",
trunk/scripts/src/osd/sdl.lua
r245286r245287
11function maintargetosdoptions(_target)
22   if _OPTIONS["targetos"]=="windows" then
33      linkoptions{
4         "-municode",
45         "-L$(shell qmake -query QT_INSTALL_LIBS)",
56      }
67
r245286r245287
2829   configuration { }
2930end
3031
32
3133configuration { "mingw*" }
3234      linkoptions {
3335         "-Wl,--allow-multiple-definition",
trunk/scripts/src/osd/sdl_cfg.lua
r245286r245287
1313      "USE_OPENGL=1",
1414      "USE_QTDEBUG=1",
1515      "SDLMAME_NET_PCAP",
16      "main=utf8_main",
1617   }
1718
1819   buildoptions {
trunk/scripts/src/osd/windows.lua
r245286r245287
11function maintargetosdoptions(_target)
2   linkoptions {
3      "-municode",
4   }
5
26   local rcfile = MAME_DIR .. "src/" .. _target .. "/osd/windows/" .. _target ..".rc"
37
48   if os.isfile(rcfile) then
trunk/scripts/src/osd/windows_cfg.lua
r245286r245287
1212   "USE_DISPATCH_GL=1",
1313   "DIRECTINPUT_VERSION=0x0800",
1414   "SDLMAME_NET_PCAP",
15   "main=utf8_main",
1516}


Previous 199869 Revisions Next


© 1997-2024 The MAME Team