mirror of
https://github.com/BlackMATov/kari.hpp.git
synced 2025-12-13 04:56:49 +07:00
10 lines
186 B
Bash
Executable File
10 lines
186 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
BUILD_DIR=`dirname "$BASH_SOURCE"`/../build
|
|
mkdir -p $BUILD_DIR/Debug
|
|
pushd $BUILD_DIR/Debug
|
|
cmake -DCMAKE_BUILD_TYPE=Debug ../..
|
|
cmake --build .
|
|
ctest --verbose
|
|
popd
|