forked from mas-bandwidth/yojimbo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
premake5.lua
158 lines (139 loc) · 4.39 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
solution "Yojimbo"
kind "ConsoleApp"
language "C++"
configurations { "Debug", "Release" }
includedirs { ".", "include", "sodium", "tlsf", "netcode", "reliable", "serialize" }
if not os.istarget "windows" then
targetdir "bin/"
end
rtti "Off"
warnings "Extra"
flags { "FatalWarnings" }
floatingpoint "Fast"
filter "configurations:Debug"
symbols "On"
defines { "YOJIMBO_DEBUG", "NETCODE_DEBUG", "RELIABLE_DEBUG" }
filter "configurations:Release"
symbols "Off"
optimize "Speed"
defines { "YOJIMBO_RELEASE", "NETCODE_RELEASE", "RELIABLE_RELEASE" }
project "sodium-builtin"
kind "StaticLib"
language "C"
files { "sodium/dummy.c" }
filter "system:windows"
files {
"sodium/**.c",
"sodium/**.h",
}
filter { "system:not windows", "platforms:*x64 or *avx or *avx2" }
files {
"sodium/**.S"
}
filter { "action:gmake*" }
buildoptions { "-Wno-unused-parameter", "-Wno-unused-function", "-Wno-unknown-pragmas", "-Wno-unused-variable", "-Wno-type-limits" }
project "netcode"
kind "StaticLib"
language "C"
defines { "NETCODE_ENABLE_TESTS=1" }
files { "netcode/netcode.c", "netcode/netcode.h" }
project "reliable"
kind "StaticLib"
language "C"
defines { "RELIABLE_ENABLE_TESTS=1" }
files { "reliable/reliable.c", "reliable/reliable.h" }
project "tlsf"
kind "StaticLib"
language "C"
files { "tlsf/tlsf.c", "tlsf/tlsf.h" }
project "yojimbo"
kind "StaticLib"
files { "include/*.h", "source/*.cpp" }
project "client"
files { "client.cpp", "shared.h" }
filter "system:windows"
links { "yojimbo", "sodium-builtin", "tlsf", "netcode", "reliable" }
filter "system:not windows"
links { "yojimbo", "sodium", "tlsf", "netcode", "reliable" }
libdirs { "/opt/homebrew/lib" }
project "server"
files { "server.cpp", "shared.h" }
filter "system:windows"
links { "yojimbo", "sodium-builtin", "tlsf", "netcode", "reliable" }
filter "system:not windows"
links { "yojimbo", "sodium", "tlsf", "netcode", "reliable" }
libdirs { "/opt/homebrew/lib" }
project "loopback"
files { "loopback.cpp", "shared.h" }
filter "system:windows"
links { "yojimbo", "sodium-builtin", "tlsf", "netcode", "reliable" }
filter "system:not windows"
links { "yojimbo", "sodium", "tlsf", "netcode", "reliable" }
libdirs { "/opt/homebrew/lib" }
project "soak"
files { "soak.cpp", "shared.h" }
filter "system:windows"
links { "yojimbo", "sodium-builtin", "tlsf", "netcode", "reliable" }
filter "system:not windows"
links { "yojimbo", "sodium", "tlsf", "netcode", "reliable" }
libdirs { "/opt/homebrew/lib" }
project "test"
files { "test.cpp" }
defines { "SERIALIZE_ENABLE_TESTS=1" }
filter "system:windows"
links { "yojimbo", "sodium-builtin", "tlsf", "netcode", "reliable" }
filter "system:not windows"
links { "yojimbo", "sodium", "tlsf", "netcode", "reliable" }
libdirs { "/opt/homebrew/lib" }
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",
"docker/yojimbo",
"valgrind/yojimbo",
"docs",
"xml"
}
for i,v in ipairs( directories_to_delete ) do
os.rmdir( v )
end
if not os.istarget "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
}