mirror of
https://github.com/Qortal/Brooklyn.git
synced 2025-02-19 13:45:54 +00:00
15 lines
293 B
Bash
15 lines
293 B
Bash
#!/bin/bash
|
|
|
|
set -ex
|
|
|
|
git clone https://github.com/ValveSoftware/Fossilize.git
|
|
cd Fossilize
|
|
git checkout 72088685d90bc814d14aad5505354ffa8a642789
|
|
git submodule update --init
|
|
mkdir build
|
|
cd build
|
|
cmake -S .. -B . -G Ninja -DCMAKE_BUILD_TYPE=Release
|
|
ninja -C . install
|
|
cd ../..
|
|
rm -rf Fossilize
|