mirror of
https://github.com/uroni/hs5.git
synced 2025-10-26 11:17:18 +00:00
24 lines
289 B
Bash
Executable File
24 lines
289 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -ex
|
|
|
|
CDIR="$(cd -P -- "$(dirname -- "${BASH_SOURCE[0]}")" && pwd -P)"
|
|
cd "$CDIR"
|
|
|
|
cd www
|
|
|
|
pnpm install --frozen-lockfile
|
|
|
|
pnpm run build
|
|
|
|
cd ../wwwgen
|
|
|
|
python wwwgen.py ../www/dist not-empty
|
|
|
|
cmake --preset ninja-multi-vcpkg
|
|
|
|
cmake --build --preset ninja-vcpkg-release
|
|
|
|
|
|
|