blob: baa238317230091cc0b373427acab307382482b7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
-- license:BSD-3-Clause
-- copyright-holders:MAMEdev Team
dofile('modules.lua')
forcedincludes {
-- MAME_DIR .. "src/osd/sdl/sdlprefix.h"
}
if _OPTIONS["USE_TAPTUN"]=="1" or _OPTIONS["USE_PCAP"]==1 then
defines {
"USE_NETWORK",
}
if _OPTIONS["USE_TAPTUN"]=="1" then
defines {
"OSD_NET_USE_TAPTUN",
}
end
if _OPTIONS["USE_PCAP"]=="1" then
defines {
"OSD_NET_USE_PCAP",
}
end
end
defines {
"OSD_MAC",
"SDLMAME_UNIX",
"SDLMAME_MACOSX",
"SDLMAME_DARWIN"
}
configuration { "osx*" }
includedirs {
MAME_DIR .. "3rdparty/bx/include/compat/osx",
}
configuration { }
|