mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-22 19:08:58 +03:00
8 lines
154 B
Bash
Executable file
8 lines
154 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set -evx
|
|
|
|
cmake -DBUILD_TESTS=ON -H. -Bbuild -DCMAKE_BUILD_TYPE=Release
|
|
make -C build -j2
|
|
|
|
cd build && GTEST_COLOR=1 ctest --verbose
|