-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpremake5.lua
More file actions
88 lines (73 loc) · 1.91 KB
/
Copy pathpremake5.lua
File metadata and controls
88 lines (73 loc) · 1.91 KB
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
include "Tools/Premake/customization/solutionitems.lua"
include "dependencies.lua"
OUT_DIR = "%{wks.location}/bin/build/%{cfg.system}/%{cfg.architecture}/%{cfg.buildcfg}/Intricate Recovery"
INT_DIR = "%{wks.location}/bin/intermediate/%{cfg.system}/%{cfg.architecture}/%{cfg.buildcfg}/%{prj.name}"
workspace "IntricateRecovery"
architecture "x86_64"
startproject "IntricateRecovery"
multiprocessorcompile "On"
configurations
{
"Debug",
"Dev",
"Release"
}
solutionitems
{
".editorconfig",
".gitattributes",
".gitignore",
"raptor.toml"
}
defines
{
"_CRT_SECURE_NO_DEPRECATE",
"_CRT_SECURE_NO_WARNINGS",
"_CRT_NONSTDC_NO_WARNINGS",
"_SILENCE_ALL_CXX20_DEPRECATION_WARNINGS"
}
filter "system:windows"
systemversion "latest"
staticruntime "Off"
defines "INTRICATE_PLATFORM_WINDOWS"
filter "system:linux"
systemversion "latest"
pic "On"
staticruntime "Off"
defines "INTRICATE_PLATFORM_LINUX"
filter "system:macosx"
systemversion "latest"
pic "On"
staticruntime "Off"
defines "INTRICATE_PLATFORM_OSX"
filter "configurations:Debug"
runtime "Debug"
symbols "Full"
defines
{
"INTRICATE_DEBUG",
"_DEBUG"
}
filter "configurations:Dev"
runtime "Release"
symbols "On"
optimize "On"
defines
{
"INTRICATE_DEV",
"NDEBUG"
}
filter "configurations:Release"
runtime "Release"
symbols "Off"
optimize "Full"
linktimeoptimization "On"
incrementallink "Off"
buffersecuritycheck "Off"
runtimechecks "Off"
defines
{
"INTRICATE_RELEASE",
"NDEBUG"
}
include "IntricateRecovery"