Skip to content

Commit

Permalink
Add Taskfile for local dev loop
Browse files Browse the repository at this point in the history
Signed-off-by: Joel Van Eenwyk <[email protected]>
  • Loading branch information
joelvaneenwyk committed Jul 9, 2024
1 parent 4bfb9b6 commit bd2dbcf
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions taskfile.yaml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit bd2dbcf

Please sign in to comment.