mirror of
https://github.com/tomahawk-player/tomahawk.git
synced 2025-08-05 13:47:26 +02:00
9 lines
153 B
Bash
Executable File
9 lines
153 B
Bash
Executable File
#!/bin/bash
|
|
|
|
mkdir build
|
|
cd build
|
|
cmake -G Ninja -DCMAKE_BUILD_TYPE=${BUILD_TYPE:-Debug} ..
|
|
ninja
|
|
ninja install
|
|
env CTEST_OUTPUT_ON_FAILURE=1 ninja test
|