mirror of
https://github.com/GerbilSoft/rvthtool.git
synced 2025-06-18 03:25:33 -04:00
13 lines
186 B
Bash
Executable File
13 lines
186 B
Bash
Executable File
#!/bin/sh
|
|
set -ev
|
|
cmake --version
|
|
|
|
mkdir build || true
|
|
cd build
|
|
|
|
cmake .. -G Ninja \
|
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
|
-DCMAKE_BUILD_TYPE=Release \
|
|
-DENABLE_NLS=OFF \
|
|
-DBUILD_TESTING=ON
|