mirror of
https://github.com/simon987/sist2.git
synced 2025-04-10 14:06:45 +00:00
14 lines
284 B
Bash
Executable File
14 lines
284 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
VCPKG_ROOT="/vcpkg"
|
|
|
|
rm *.gz
|
|
|
|
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 4
|
|
strip sist2
|
|
mv sist2 sist2_arm64
|
|
gzip -9 sist2_arm64 |