mirror of
https://github.com/simon987/sist2.git
synced 2025-04-17 17:26:48 +00:00
13 lines
289 B
Bash
Executable File
13 lines
289 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
VCPKG_ROOT="/vcpkg"
|
|
|
|
rm *.gz &>/dev/null
|
|
|
|
git submodule update --init --recursive
|
|
|
|
rm -rf CMakeFiles CMakeCache.txt
|
|
cmake -DSIST_DEBUG=off -DCMAKE_TOOLCHAIN_FILE="${VCPKG_ROOT}/scripts/buildsystems/vcpkg.cmake" .
|
|
make -j $(nproc)
|
|
strip sist2
|
|
mv sist2 sist2-arm64-linux |