diff --git a/taskfile.yaml b/taskfile.yaml new file mode 100644 index 0000000..cf8570d --- /dev/null +++ b/taskfile.yaml @@ -0,0 +1,14 @@ +# https://taskfile.dev + +version: '3' + +tasks: + default: + cmds: + - task: build + + build: + cmds: + - cmd: git submodule update --init --recursive --checkout + - cmd: cmake -B .build -S . + - cmd: cmake --build .build