ToobAmp aaarch64, build-prod script

This commit is contained in:
Robin E. R. Davies
2025-09-12 00:08:58 -04:00
parent 3c029c23df
commit 6cf2708387
2 changed files with 16 additions and 0 deletions
Executable
+16
View File
@@ -0,0 +1,16 @@
#!/bin/bash
# Run a CMake build.
set -e
# clean build
rm -rf build
# configure for release
mkdir -p build
cd build
cmake .. -D CMAKE_BUILD_TYPE=Release -D CMAKE_VERBOSE_MAKEFILE=ON -G Ninja
cd ..
time cmake --build ./build --target all --config Release -- -j 3
Binary file not shown.