mirror of
https://github.com/commaai/agnos-builder.git
synced 2026-04-07 07:13:53 +08:00
12 lines
308 B
Bash
Executable File
12 lines
308 B
Bash
Executable File
#!/bin/bash -e
|
|
|
|
# Build mapbox-gl-native
|
|
cd /tmp
|
|
git clone --recursive https://github.com/commaai/mapbox-gl-native.git
|
|
cd mapbox-gl-native
|
|
git checkout 69f41ffff655ee28834c167ad1353112f370e6e5
|
|
mkdir build && cd build
|
|
cmake -DMBGL_WITH_QT=ON ..
|
|
make -j$(nproc) mbgl-qt
|
|
mv libqmapboxgl.so /tmp/libqmapboxgl.so
|