mirror of
https://github.com/Swarsel/.dotfiles.git
synced 2025-12-06 17:17:22 +01:00
5 lines
125 B
Bash
Executable file
5 lines
125 B
Bash
Executable file
#!/bin/sh
|
|
rm -rf build
|
|
cmake -S . -B build -D CMAKE_BUILD_TYPE=Debug
|
|
cmake --build build --target all
|
|
ctest --test-dir build
|