flatgeobuf/script/getcppdeps.sh
Björn Harrtell 01940e4f3f Upgrade deps
2020-03-13 23:55:18 +01:00

12 lines
852 B
Bash
Executable File

#!/bin/sh
curl -L https://github.com/google/flatbuffers/archive/v1.12.0.tar.gz | \
tar xz -C src/cpp/include --strip-components=2 flatbuffers-1.12.0/include
curl -L https://github.com/mapbox/geojson-cpp/archive/v0.4.3.tar.gz | \
tar xz -C src/cpp/include --strip-components=2 geojson-cpp-0.4.3/include
curl -L https://github.com/mapbox/geometry.hpp/archive/v1.0.0.tar.gz | \
tar xz -C src/cpp/include --strip-components=2 geometry.hpp-1.0.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.11.1/catch.hpp -o src/cpp/test/catch.hpp