flatgeobuf/script/getcppdeps.sh
2022-10-24 15:39:15 +02:00

13 lines
851 B
Bash
Executable File

#!/bin/sh
curl -L https://github.com/google/flatbuffers/archive/v2.0.6.tar.gz | \
tar xz -C src/cpp/include --strip-components=2 flatbuffers-2.0.6/include
curl -L https://github.com/mapbox/geojson-cpp/archive/v0.5.1.tar.gz | \
tar xz -C src/cpp/include --strip-components=2 geojson-cpp-0.5.1/include
curl -L https://github.com/mapbox/geometry.hpp/archive/v1.1.0.tar.gz | \
tar xz -C src/cpp/include --strip-components=2 geometry.hpp-1.1.0/include
curl -L https://github.com/mapbox/variant/archive/v1.1.4.tar.gz | \
tar xz -C src/cpp/include --strip-components=2 variant-1.1.4/include
curl -L https://github.com/Tencent/rapidjson/archive/v1.1.0.tar.gz | \
tar xz -C src/cpp/include --strip-components=2 rapidjson-1.1.0/include
curl -L https://github.com/catchorg/Catch2/releases/download/v2.13.9/catch.hpp -o src/cpp/test/catch.hpp