16 lines
301 B
Makefile
16 lines
301 B
Makefile
# Hide the default option from the recipes list
|
|
_default:
|
|
@just --list
|
|
|
|
|
|
setup:
|
|
cmake -B build/ --install-prefix ~/.local -DCMAKE_EXPORT_COMPILE_COMMANDS=1
|
|
|
|
build:
|
|
cmake --build build/ -j `nproc`
|
|
|
|
install:
|
|
cmake --install build/
|
|
|
|
uninstall:
|
|
cmake --build build/ --target uninstall
|