-
-
Notifications
You must be signed in to change notification settings - Fork 23
/
premake5.lua
197 lines (144 loc) · 5.16 KB
/
premake5.lua
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
newoption {
trigger = "to",
value = "path",
description = "Set the output location for the generated files"
}
newoption {
trigger = "use-sdl_ttf",
value = "bool",
description = "Use SDL_TTF (for font)",
default = true
}
if (_ACTION == nil) then
return
end
local locationDir = _OPTIONS["to"] or path.join("solution", _ACTION, "stratagus")
local nugetPackages = {
"sdl2.nuget:2.28.0", "sdl2.nuget.redist:2.28.0",
"sdl2_image.nuget:2.6.3", "sdl2_image.nuget.redist:2.6.3",
"sdl2_mixer.nuget:2.6.3", "sdl2_mixer.nuget.redist:2.6.3" -- Sound for demo
}
if _OPTIONS["use-sdl_ttf"] then
nugetPackages = table.join(nugetPackages, {"sdl2_ttf.nuget:2.20.2", "sdl2_ttf.nuget.redist:2.20.2"})
end
function useGuisan()
includedirs { "include/" }
links { "guisan" }
if _OPTIONS["use-sdl_ttf"] then
defines { "USE_SDL2_TTF" }
end
end
-- ----------------------------------------------------------------------------
workspace "Guisan"
location(locationDir)
configurations {"Debug", "Release"}
language "C++"
cppdialect "C++14"
objdir(path.join(locationDir, "obj")) -- premake adds $(configName)/$(AppName)
targetdir(path.join(locationDir, "bin/%{cfg.buildcfg}"))
startproject "guisan"
externalwarnings "Off"
warnings "Extra"
--flags { "FatalWarnings"}
filter { "action:vs*" }
nuget(nugetPackages)
defines { "_CRT_SECURE_NO_WARNINGS" } -- 4996: '$func': This function or variable may be unsafe. Consider using $func2 instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
filter { "toolset:msc*" }
buildoptions { "/Zc:__cplusplus" } -- else __cplusplus would be 199711L
-- buildoptions {"/Za"} -- Disable language extensions
-- Error from <winnt.h>
--"2133", -- '%array_var': unknown size
--"2467", -- illegal declaration of anonymous struct
disablewarnings {
"4018", -- '<': signed/unsigned mismatch
"4100", -- '%var': unreferenced formal parameter
"4127", -- conditional expression is constant
"4189", -- '%var': local variable is initialized but not referenced
"4244", -- '=': conversion from '$type1' to '$type2', possible loss of data
"4458", -- declaration of '$var' hides class member
}
filter { "configurations:Debug" }
symbols "On"
defines { "DEBUG" }
optimize "Off"
filter { "configurations:Release" }
symbols "Off"
defines { "NDEBUG" }
optimize "On"
filter "system:windows"
defines { "NOMINMAX", "WIN32", "USE_WIN32" }
-- ----------------------------------------------------------------------------
project "guisan"
kind "StaticLib"
targetname "guisan"
files { "src/**.cpp", "include/**.hpp" }
files { "src/SConscript" }
files { "*.*"}
if _OPTIONS["use-sdl_ttf"] then
defines { "USE_SDL2_TTF" }
end
includedirs { "include" }
-- ----------------------------------------------------------------------------
group "examples"
-- ----------------------------------------------------------------------------
project "opengl_helloworld"
kind "WindowedApp"
targetname "opengl_helloworld"
files { "examples/openglhelloworld.cpp", "examples/opengl_helper.hpp", "examples/helloworld_example.hpp" }
useGuisan()
links { "opengl32" }
debugdir "examples"
-- ----------------------------------------------------------------------------
project "opengl_widgets"
kind "WindowedApp"
targetname "opengl_widgets"
files { "examples/openglwidgets.cpp", "examples/opengl_helper.hpp", "examples/widgets_example.hpp" }
useGuisan()
links { "opengl32" }
debugdir "examples"
-- ----------------------------------------------------------------------------
project "sdl_action"
kind "WindowedApp"
targetname "sdl_action"
files { "examples/sdlaction.cpp", "examples/sdl_helper.hpp", "examples/action_example.hpp" }
useGuisan()
debugdir "examples"
-- ----------------------------------------------------------------------------
project "sdl_hello"
kind "WindowedApp"
targetname "sdl_hello"
files { "examples/sdlhelloworld.cpp", "examples/sdl_helper.hpp", "examples/helloworld_example.hpp" }
useGuisan()
debugdir "examples"
-- ----------------------------------------------------------------------------
project "sdl_rickroll"
kind "WindowedApp"
targetname "sdl_rickroll"
files { "examples/sdlrickroll.cpp", "examples/sdl_helper.hpp", "examples/rickroll_example.hpp" }
useGuisan()
debugdir "examples"
-- ----------------------------------------------------------------------------
project "sdl_widgets"
kind "WindowedApp"
targetname "sdl_widgets"
files { "examples/sdlwidgets.cpp", "examples/sdl_helper.hpp", "examples/widgets_example.hpp" }
useGuisan()
debugdir "examples"
-- ----------------------------------------------------------------------------
project "sdl2_widgets"
kind "WindowedApp"
targetname "sdl2_widgets"
files { "examples/sdl2widgets.cpp", "examples/sdl2_helper.hpp", "examples/widgets_example.hpp" }
useGuisan()
debugdir "examples"
-- ----------------------------------------------------------------------------
group "Demo"
-- ----------------------------------------------------------------------------
project "Demo_ff"
kind "WindowedApp"
targetname "Demo"
files { "Demo/ff/**.*" }
includedirs { "Demo/ff/include" }
useGuisan()
links {"opengl32"}
debugdir "Demo/ff"