diff options
author | Thiago Marcos P. Santos <tmpsantos@gmail.com> | 2020-01-02 16:09:11 +0100 |
---|---|---|
committer | Thiago Marcos P. Santos <tmpsantos@gmail.com> | 2020-01-08 13:07:12 +0200 |
commit | f14985f783f2f96fc944e397c6c5072f8d3bc9b5 (patch) | |
tree | 35801556b4409547c720ee0540c44b5f293f49e5 /next | |
parent | c46f0baa571986a564c3378f928b7269ae2079a2 (diff) | |
download | qtlocation-mapboxgl-f14985f783f2f96fc944e397c6c5072f8d3bc9b5.tar.gz |
[tools] Added cache tool
A tool for adding resources to a cache database, important for
adding fixtures to our render test cache database.
Diffstat (limited to 'next')
-rw-r--r-- | next/bin/CMakeLists.txt | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/next/bin/CMakeLists.txt b/next/bin/CMakeLists.txt index daef945a41..b2414a6c82 100644 --- a/next/bin/CMakeLists.txt +++ b/next/bin/CMakeLists.txt @@ -1,4 +1,18 @@ add_executable( + mbgl-cache + ${MBGL_ROOT}/bin/cache.cpp +) + +target_link_libraries( + mbgl-cache + PRIVATE + Mapbox::Base::Extras::args + Mapbox::Base::io + mbgl-compiler-options + mbgl-core +) + +add_executable( mbgl-offline ${MBGL_ROOT}/bin/offline.cpp ) |