pelicanmapping / rocky

3D Geospatial SDK (C++17 / Vulkan / VSG)
MIT License
91 stars 15 forks source link

can't link without zlib using disabled MBTiles and GDAL #10

Closed remoe closed 1 year ago

remoe commented 1 year ago

One can't link rocky with following settings:

-DROCKY_SUPPORTS_MBTILES=OFF
-DROCKY_SUPPORTS_GDAL=OFF

Rocky currently need ZLIB as a dependency because of ZLibCompressor.

Suggestion:

Add this:

set(BUILD_WITH_ZLIB ON)

here https://github.com/pelicanmapping/rocky/blob/main/CMakeLists.txt#L66

remoe commented 1 year ago

Solved with https://github.com/pelicanmapping/rocky/pull/11