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