mirror of
https://git.sr.ht/~thestr4ng3r/chiaki
synced 2025-07-06 04:52:09 -07:00
9 lines
110 B
Bash
Executable file
9 lines
110 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -e
|
|
set -x
|
|
|
|
mkdir build && cd build
|
|
cmake .. -DCHIAKI_ENABLE_SETSU=ON "$@"
|
|
make -j8
|
|
make test
|