forked from Bru7aLMike/l2mapconv
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.vanity.example.yml
225 lines (207 loc) · 4.68 KB
/
.vanity.example.yml
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
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
name: l2mapconv
include:
- conditions.yml
- templates.yml
- libs.yml
- src.yml
conditions:
clang: >-
CMAKE_CXX_COMPILER_ID STREQUAL "Clang" OR
CMAKE_CXX_COMPILER_ID STREQUAL "AppleClang"
gcc:
CMAKE_CXX_COMPILER_ID: GNU
msvc:
CMAKE_CXX_COMPILER_ID: MSVC
templates:
default:
project:
properties:
CXX_STANDARD: 20
CXX_STANDARD_REQUIRED: true
switch:
- case: clang
compile-options: >-
-Wall
-Wextra
-Werror
-Wpedantic
-Wshadow-all
-Wunused
-Wunused-member-function
-Wdate-time
-Wthread-safety
-Wloop-analysis
-Wconditional-uninitialized
-Wsuggest-override
-Wunreachable-code-aggressive
-Wimplicit-fallthrough
-Wno-error=shadow-field-in-constructor
-Wno-error=gnu-anonymous-struct
-Wno-error=nested-anon-types
-Wno-error=microsoft-enum-value
- case: gcc
compile-options: >-
-Wall
-Wextra
-Werror
-Wpedantic
-Wshadow=local
-Wredundant-decls
-Wunused
-Wdate-time
-fno-extended-identifiers
- case: msvc
compile-options: >-
/W4 /WX /utf-8 /wd4244 /wd4201 /wd4267
targets:
cxxopts:
path: libs/cxxopts
repository: https://github.com/jarro2783/cxxopts
glew:
path: libs/glew
repository: https://github.com/Perlmint/glew-cmake
overrides:
glew-cmake_BUILD_SHARED: false
ONLY_LIBS: true
glfw:
path: libs/glfw
repository:
url: https://github.com/glfw/glfw
branch: master
overrides:
GLFW_BUILD_DOCS: false
GLFW_INSTALL: false
glm:
path: libs/glfw
repository: https://github.com/g-truc/glm
imgui:
path: libs/imgui
repository:
url: https://github.com/ocornut/imgui
subdirectory: imgui
project:
type: library
sources: imgui
includes: [imgui, .]
dependencies: [glfw, libglew_static]
properties:
CXX_STANDARD: 20
CXX_STANDARD_REQUIRED: true
llvm:
path: libs/llvm
project:
type: interface
includes: include
recast:
path: libs/recast
repository:
url: https://github.com/recastnavigation/recastnavigation
patches: patches/recast.patch
overrides:
RECASTNAVIGATION_DEMO: false
RECASTNAVIGATION_TESTS: false
RECASTNAVIGATION_EXAMPLES: false
stb:
path: libs/stb
repository:
url: https://github.com/nothings/stb
subdirectory: stb
project:
type: library
sources: src
includes: .
app:
path: src/app
templates: default
project:
type: executable
sources: src
pchs: src/pch.h
dependencies:
- utils
- geometry
- unreal
- rendering
- geodata
- glfw
- libglew_static
- glm
- imgui
- cxxopts
properties:
OUTPUT_NAME: l2mapconv
options:
L2MAPCONV_LOAD_TEXTURES:
description: "Load textures"
default: false
L2MAPCONV_LOAD_TERRAIN:
description: "Load terrain"
default: true
switch:
- case: L2MAPCONV_LOAD_TEXTURES
definitions:
LOAD_TEXTURES: 1
- case: L2MAPCONV_LOAD_TERRAIN
definitions:
LOAD_TERRAIN: 1
utils:
path: src/utils
templates: default
project:
type: library
sources: src
includes: include
dependencies:
- llvm
unreal:
path: src/unreal
templates: default
project:
type: library
sources: src
includes: include
pchs: src/pch.h
dependencies:
public:
- utils
rendering:
path: src/rendering
templates: default
project:
type: library
sources: src
includes: include
pchs: src/pch.h
dependencies:
- utils
- geometry
- libglew_static
- glm
- stb
geometry:
path: src/geometry
templates: default
project:
type: library
sources: src
includes: include
dependencies: [utils, glm]
geodata:
path: src/geodata
templates: default
project:
type: library
sources: src
includes: include
pchs: src/pch.h
dependencies:
- utils
- geometry
- llvm
- glm
- Recast
options:
L2MAPCONV_GEODATA_POST_PROCESSING:
description: "Geodata post-processing"
default: true
definition: GEODATA_POST_PROCESSING