-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpremake5.lua
More file actions
44 lines (34 loc) · 853 Bytes
/
Copy pathpremake5.lua
File metadata and controls
44 lines (34 loc) · 853 Bytes
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
TARGET_OUTPUT = "bin/%{cfg.architecture}-%{cfg.buildcfg}-%{cfg.system}"
OBJECT_OUTPUT = "bin-int/%{cfg.architecture}-%{cfg.buildcfg}-%{cfg.system}"
workspace "Simplex"
startproject "Simplex-Sandbox"
architecture "x64"
staticruntime "on"
cppdialect "C++20"
flags "MultiProcessorCompile"
configurations {
"Debug",
"Release",
"Dist"
}
filter "configurations:Debug"
defines "SMPX_CONFIG_DEBUG"
optimize "off"
symbols "on"
filter "configurations:Release"
defines "SMPX_CONFIG_RELEASE"
optimize "on"
symbols "off"
filter "configurations:Dist"
defines "SMPX_CONFIG_DIST"
optimize "on"
symbols "off"
filter "system:windows"
systemversion "latest"
defines "SMPX_SYSTEM_WINDOWS"
filter "system:linux"
defines "SMPX_SYSTEM_LINUX"
filter {}
include "Simplex"
include "Simplex-Sandbox"
include "Simplex-Tests"