mirror of
https://gitlab.com/splashmapper/splash.git
synced 2026-02-12 15:00:52 +01:00
10 lines
273 B
Bash
Executable File
10 lines
273 B
Bash
Executable File
#!/bin/bash
|
|
|
|
export PATH="/c/msys64/$MSYSTEM/bin:$PATH"
|
|
|
|
cmake -DBUILD_GENERIC_ARCH=ON -DUSE_SYSTEM_LIBS=ON -DWITH_LTO=ON -DWITH_PORTABLE=ON -B build
|
|
cmake --build build
|
|
cmake --build build --target check
|
|
cmake --build build --target package
|
|
mv build/splash-*-win64.exe ./
|