-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
43 lines (32 loc) · 828 Bytes
/
Makefile
File metadata and controls
43 lines (32 loc) · 828 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
debug:
bash compileShaders.sh
cmake -B build -DCMAKE_BUILD_TYPE=Debug
cmake --build build
debug-stl:
bash compileShaders.sh
cmake -B build -DCMAKE_BUILD_TYPE=Debug -DENABLE_STL_DEBUG=ON
cmake --build build
release:
bash compileShaders.sh
cmake -B build -DCMAKE_BUILD_TYPE=Release
cmake --build build
release-debug:
bash compileShaders.sh
cmake -B build -DCMAKE_BUILD_TYPE=RelWithDebInfo
cmake --build build
release-debug-unoptimized:
bash compileShaders.sh
cmake -B build -DCMAKE_BUILD_TYPE=RelWithDebInfo -DRELWITHDEBINFO_OPT=-O0
cmake --build build
tracy:
./vendor/tracy/build/tracy-profiler
run:
./build/vxen
run-exp:
./build/experiment
valgrind:
valgrind --leak-check=full --track-origins=yes ./build/vxen
renderdoc:
renderdoccmd capture --working-dir . ./build/vxen
clearlogs:
rm -rf logs/*