8 lines
76 B
Bash
Executable file
8 lines
76 B
Bash
Executable file
#!/bin/sh
|
|
|
|
set -ev
|
|
|
|
mkdir build && cd build
|
|
cmake -GNinja ..
|
|
ninja -v
|
|
ctest
|