You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Would like to have the recipe updated to support a couple extra CMake variables documented here https://gdal.org/en/stable/development/building_from_source.html
I'm most interested in just being able to set GDAL_BUILD_OPTIONAL_DRIVERS and OGR_BUILD_OPTIONAL_DRIVERS as an option in the GDAL recipe. For bonus points it would be good to allow options to specifically enable specified drivers as well.
For a minimal build, add these options to the initial cmake command: -DGDAL_BUILD_OPTIONAL_DRIVERS=OFF -DOGR_BUILD_OPTIONAL_DRIVERS=OFF. To enable specific drivers, add -DGDAL_ENABLE_DRIVER_<driver_name>=ON or -DOGR_ENABLE_DRIVER_<driver_name>=ON. See Selection of drivers for more details.
Note: There are a lot of drivers which would mean needing to add a lot of options to the recipe.
The text was updated successfully, but these errors were encountered:
Would like to have the recipe updated to support a couple extra CMake variables documented here https://gdal.org/en/stable/development/building_from_source.html
I'm most interested in just being able to set
GDAL_BUILD_OPTIONAL_DRIVERS
andOGR_BUILD_OPTIONAL_DRIVERS
as an option in the GDAL recipe. For bonus points it would be good to allow options to specifically enable specified drivers as well.Note: There are a lot of drivers which would mean needing to add a lot of options to the recipe.
The text was updated successfully, but these errors were encountered: