mirror of
https://gitee.com/bianbu-linux/mesa3d
synced 2025-04-24 14:17:59 -04:00
14 lines
293 B
Bash
14 lines
293 B
Bash
#!/bin/bash
|
|
|
|
set -ex
|
|
|
|
git clone https://github.com/ValveSoftware/Fossilize.git
|
|
cd Fossilize
|
|
git checkout 16fba1b8b5d9310126bb02323d7bae3227338461
|
|
git submodule update --init
|
|
mkdir build
|
|
cd build
|
|
cmake -S .. -B . -G Ninja -DCMAKE_BUILD_TYPE=Release
|
|
ninja -C . install
|
|
cd ../..
|
|
rm -rf Fossilize
|