summaryrefslogtreecommitdiffstatshomepage
path: root/scripts/src/osd/windows_cfg.lua
blob: 10e5ee86a217093468fc0039f03275f9c471314a (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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
-- license:BSD-3-Clause
-- copyright-holders:MAMEdev Team

defines {
	"OSD_WINDOWS",
	"WIN32_LEAN_AND_MEAN",
	"NOMINMAX",
}

configuration { "mingw* or vs*" }
	defines {
		"UNICODE",
		"_UNICODE"
	}

configuration { "vs*" }
	flags {
		"Unicode",
	}

configuration { }

if not _OPTIONS["MODERN_WIN_API"] then
	_OPTIONS["MODERN_WIN_API"] = "0"
end

if _OPTIONS["MODERN_WIN_API"]=="1" then
	defines {
		"WINVER=0x0602",
		"_WIN32_WINNT=0x0602",
		"NTDDI_VERSION=0x06030000",
		"MODERN_WIN_API",
	}
else
	defines {
		"_WIN32_WINNT=0x0501",
	}
end

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

if _OPTIONS["USE_SDL"]=="1" then
	defines {
		"SDLMAME_SDL2=1",
		"USE_XINPUT=0",
		"USE_SDL=1",
		"USE_SDL_SOUND",
	}
else
	defines {
		"USE_SDL=0",
	}
end