- Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathjustfile
More file actions
Latest commit
29 lines (21 loc) · 642 Bytes
/
Copy pathjustfile
File metadata and controls
29 lines (21 loc) · 642 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
help:
just -l
configure:
cmake -Bbuild -DCMAKE_BUILD_TYPE=Debug .
[group('rel')]
configure-mingw:
cmake -Bbuild -DCMAKE_BUILD_TYPE=Release -DCMAKE_TOOLCHAIN_FILE=$PWD/toolchain/mingw64.cmake .
# Commented out configure because it takes unnecessarily long
# Just run configure manually if you've made any changes
build: #configure
cmake --build build -j$(nproc)
editor:build
./build/bin/editor
editor-dbg:build
gdb -q ./build/bin/editor
test:build
ctest --test-dir=build
test-v:build
ctest --test-dir=build --rerun-failed --output-on-failure
test-dbg:build
gdb -q ./build/bin/obtest