forked from mas-bandwidth/netcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
premake5.lua
268 lines (233 loc) · 7.14 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
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
if os.istarget "windows" then
debug_libs = { "sodium-debug" }
release_libs = { "sodium-release" }
else
debug_libs = { "sodium" }
release_libs = debug_libs
end
solution "netcode"
kind "ConsoleApp"
language "C"
platforms { "x64" }
configurations { "Debug", "Release" }
if os.istarget "windows" then
includedirs { ".", "./windows" }
libdirs { "./windows" }
else
includedirs { ".", "/usr/local/include" } -- for clang scan-build only. for some reason it needs this to work =p
targetdir "bin/"
end
rtti "Off"
warnings "Extra"
staticruntime "On"
floatingpoint "Fast"
configuration "Debug"
symbols "On"
links { debug_libs }
defines { "NETCODE_DEBUG" }
configuration "Release"
symbols "Off"
optimize "Speed"
defines { "NETCODE_RELEASE" }
links { release_libs }
configuration { "gmake2" }
linkoptions { "-lm" }
project "test"
files { "test.cpp" }
project "soak"
files { "soak.c", "netcode.c" }
project "profile"
files { "profile.c", "netcode.c" }
project "client"
files { "client.c", "netcode.c" }
project "server"
files { "server.c", "netcode.c" }
project "client_server"
files { "client_server.c", "netcode.c" }
if os.ishost "windows" then
-- Windows
newaction
{
trigger = "solution",
description = "Create and open the netcode.io solution",
execute = function ()
os.execute "premake5 vs2019"
os.execute "start netcode.sln"
end
}
-- todo: create shortcuts here too for windows for consistency
else
-- MacOSX and Linux.
newaction
{
trigger = "test",
description = "Build and run all unit tests",
execute = function ()
os.execute "test ! -e Makefile && premake5 gmake2"
if os.execute "make -j32 test" then
os.execute "./bin/test"
end
end
}
newaction
{
trigger = "soak",
description = "Build and run soak test",
execute = function ()
os.execute "test ! -e Makefile && premake5 gmake2"
if os.execute "make -j32 soak" then
os.execute "./bin/soak"
end
end
}
newaction
{
trigger = "profile",
description = "Build and run profile tet",
execute = function ()
os.execute "test ! -e Makefile && premake5 gmake2"
if os.execute "make -j32 profile" then
os.execute "./bin/profile"
end
end
}
newaction
{
trigger = "client",
description = "Build and run the client",
execute = function ()
os.execute "test ! -e Makefile && premake5 gmake2"
if os.execute "make -j32 client" then
os.execute "./bin/client"
end
end
}
newaction
{
trigger = "server",
description = "Build and run the server",
execute = function ()
os.execute "test ! -e Makefile && premake5 gmake2"
if os.execute "make -j32 server" then
os.execute "./bin/server"
end
end
}
newaction
{
trigger = "client_server",
description = "Build and run the client/server testbed",
execute = function ()
os.execute "test ! -e Makefile && premake5 gmake2"
if os.execute "make -j32 client_server" then
os.execute "./bin/client_server"
end
end
}
newaction
{
trigger = "docker",
description = "Build and run a netcode.io server inside a docker container",
execute = function ()
os.execute "docker run --rm --privileged alpine hwclock -s" -- workaround for clock getting out of sync on macos. see https://docs.docker.com/docker-for-mac/troubleshoot/#issues
os.execute "rm -rf docker/netcode.io && mkdir -p docker/netcode.io && cp *.h docker/netcode.io && cp *.c docker/netcode.io && cp *.cpp docker/netcode.io && cp premake5.lua docker/netcode.io && cd docker && docker build -t \"networkprotocol:netcode.io-server\" . && rm -rf netcode.io && docker run -ti -p 40000:40000/udp networkprotocol:netcode.io-server"
end
}
newaction
{
trigger = "valgrind",
description = "Run valgrind over tests inside docker",
execute = function ()
os.execute "rm -rf valgrind/netcode.io && mkdir -p valgrind/netcode.io && cp *.h valgrind/netcode.io && cp *.c valgrind/netcode.io && cp *.cpp valgrind/netcode.io && cp premake5.lua valgrind/netcode.io && cd valgrind && docker build -t \"networkprotocol:netcode.io-valgrind\" . && rm -rf netcode.io && docker run -ti networkprotocol:netcode.io-valgrind"
end
}
newaction
{
trigger = "stress",
description = "Launch 256 client instances to stress test the server",
execute = function ()
os.execute "test ! -e Makefile && premake5 gmake2"
if os.execute "make -j32 client" then
for i = 0, 255 do
os.execute "./bin/client &"
end
end
end
}
newaction
{
trigger = "cppcheck",
description = "Run cppcheck over the source code",
execute = function ()
os.execute "cppcheck netcode.c"
end
}
newaction
{
trigger = "scan-build",
description = "Run clang scan-build over the project",
execute = function ()
os.execute "premake5 clean && premake5 gmake2 && scan-build make all -j32"
end
}
newaction
{
trigger = "loc",
description = "Count lines of code",
execute = function ()
os.execute "wc -l *.h *.c *.cpp"
end
}
end
newaction
{
trigger = "clean",
description = "Clean all build files and output",
execute = function ()
files_to_delete =
{
"Makefile",
"*.make",
"*.txt",
"*.zip",
"*.tar.gz",
"*.db",
"*.opendb",
"*.vcproj",
"*.vcxproj",
"*.vcxproj.user",
"*.vcxproj.filters",
"*.sln",
"*.xcodeproj",
"*.xcworkspace"
}
directories_to_delete =
{
"obj",
"ipch",
"bin",
".vs",
"Debug",
"Release",
"release",
"cov-int",
"docs",
"xml",
"docker/netcode.io",
"valgrind/netcode.io"
}
for i,v in ipairs( directories_to_delete ) do
os.rmdir( v )
end
if not os.ishost "windows" then
os.execute "find . -name .DS_Store -delete"
for i,v in ipairs( files_to_delete ) do
os.execute( "rm -f " .. v )
end
else
for i,v in ipairs( files_to_delete ) do
os.execute( "del /F /Q " .. v )
end
end
end
}