clay-template/justfile
2025-09-22 21:19:47 +02:00

15 lines
171 B
Makefile

build:
# BUILDING
bear -- cmake --build build
run:
cd bin/ && DiceGui
configure:
# CONFIGURING WITH PREMAKE
cmake -S. -Bbuild
clean:
rm -r bin/**
rm -r build/**