-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpremake5.lua
88 lines (68 loc) · 1.59 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
workspace "iw4-validator"
startproject "iw4-validator"
location "./build"
objdir "%{wks.location}/obj"
targetdir "%{wks.location}/bin/%{cfg.platform}/%{cfg.buildcfg}"
configurations {"debug", "release"}
if os.istarget("darwin") then
platforms {"x64", "arm64"}
else
platforms {"x86", "x64", "arm64"}
end
filter "platforms:x86"
architecture "x86"
filter {}
filter "platforms:x64"
architecture "x86_64"
filter {}
filter "platforms:arm64"
architecture "ARM64"
filter {}
filter {"system:windows"}
systemversion "latest"
filter {}
symbols "On"
staticruntime "On"
editandcontinue "Off"
warnings "Extra"
characterset "ASCII"
filter {"system:linux", "system:macosx"}
buildoptions "-pthread"
linkoptions "-pthread"
filter {}
filter {"system:macosx", "platforms:arm64"}
buildoptions "-arch arm64"
linkoptions "-arch arm64"
filter {}
if os.getenv("CI") then
defines "CI"
end
flags {"NoIncrementalLink", "NoMinimalRebuild", "MultiProcessorCompile", "No64BitChecks"}
filter "configurations:release"
optimize "Speed"
defines "NDEBUG"
flags "FatalCompileWarnings"
filter {}
filter "configurations:debug"
optimize "Debug"
defines {"DEBUG", "_DEBUG"}
filter {}
project "iw4-validator"
kind "ConsoleApp"
language "C++"
cppdialect "C++20"
targetname "iw4-validator"
pchheader "std_include.hpp"
pchsource "src/std_include.cpp"
files {"./src/**.hpp", "./src/**.cpp"}
includedirs {"./src", "%{prj.location}/src"}
filter {"system:windows", "toolset:not msc*"}
resincludedirs {
"%{_MAIN_SCRIPT_DIR}/src"
}
filter {}
filter {"system:windows", "toolset:msc*"}
resincludedirs {
"$(ProjectDir)src"
}
filter {}