-
-
Notifications
You must be signed in to change notification settings - Fork 552
Expand file tree
/
Copy pathJustfile
More file actions
29 lines (21 loc) · 483 Bytes
/
Copy pathJustfile
File metadata and controls
29 lines (21 loc) · 483 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
# ©AngelaMos | 2026
# Justfile
set shell := ["bash", "-uc"]
default:
@just --list --unsorted
build:
cmake --preset debug
cmake --build build/debug
release:
cmake --preset release
cmake --build build/release
run *ARGS:
./build/release/hashcracker {{ARGS}}
run-debug *ARGS:
./build/debug/hashcracker {{ARGS}}
test:
cmake --preset debug
cmake --build build/debug
ctest --test-dir build/debug --output-on-failure
clean:
rm -rf build/