-
Notifications
You must be signed in to change notification settings - Fork 0
/
premake5.lua
153 lines (128 loc) · 3.46 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
newoption {
trigger = "toolset",
value = "Toolset (eg. gcc, clang, msc)",
description = "The toolset to use to compile with",
default = os.host() == "windows" and "msc" or "gcc",
allowed = {
{ "gcc", "gcc and g++ using ld and ar" },
{ "clang", "clang and clang++ using lld and llvm-ar" },
{ "msc", "msbuild and cl using link.exe" }
}
}
newoption {
trigger = "dialect",
value = "Dialect (eg. C++17, C++20)",
description = "The dialect to use when generating project files",
default = "C++17",
}
newoption {
trigger = "architecture",
value = "Architecture",
description = "The architecture to target",
default = "x64",
allowed = {
{ "x86", "32 bit x86 architecture" },
{ "x64", "64 bit x86 architecture" }
}
}
newoption {
trigger = "config",
value = "Configuration",
description = "The configuration to compile",
default = "debug",
allowed = {
{ "debug", "Debug build with symbols turned on" },
{ "release", "Release build without symbols, but with optimizations" }
}
}
require "scripts/build"
require "scripts/test"
workspace "BitStream"
toolset(_OPTIONS["toolset"])
startproject "Test"
platforms {
"x86",
"x64"
}
configurations {
"debug",
"release"
}
filter "toolset:clang"
linkoptions { "-fuse-ld=lld" }
outputdir = "%{cfg.buildcfg}-%{cfg.system}-%{cfg.architecture}"
project "Test"
kind "ConsoleApp"
language "C++"
cppdialect(_OPTIONS["dialect"])
staticruntime "off"
targetdir ("bin/%{outputdir}")
objdir ("bin-obj/%{outputdir}")
files {
"src/**.cpp",
"src/**.h",
"include/**.h"
}
includedirs {
"src",
"include"
}
-- OS
filter "system:windows"
systemversion "latest"
conformancemode "on"
flags { "MultiProcessorCompile" }
-- buildoptions {
-- "/w14242",
-- "/w14254",
-- "/w14263",
-- "/w14265",
-- "/w14287",
-- "/w14289",
-- "/w14296",
-- "/w14311",
-- "/w14545",
-- "/w14546",
-- "/w14547",
-- "/w14549",
-- "/w14555",
-- "/w14619",
-- "/w14640",
-- "/w14826",
-- "/w14905",
-- "/w14906",
-- "/w14928"
-- }
filter "system:linux"
systemversion "latest"
-- buildoptions {
-- "-pedantic",
-- "-Wall",
-- "-Wextra",
-- "-Wshadow",
-- "-Wnon-virtual-dtor",
-- "-Wold-style-cast",
-- "-Wcast-align",
-- "-Wunused",
-- "-Woverloaded-virtual",
-- "-Wpedantic",
-- "-Wconversion",
-- "-Wsign-conversion",
-- "-Wdouble-promotion",
-- "-Wformat=2",
-- "-Wimplicit-fallthrough"
-- }
-- Architecture
filter "platforms:x86"
architecture "x86"
filter "platforms:x64"
architecture "x86_64"
-- Config
filter "configurations:debug"
defines { "BS_DEBUG_BREAK" }
runtime "Debug"
symbols "on"
filter "configurations:release"
flags { "LinkTimeOptimization" }
runtime "Release"
optimize "on"