Skip to content
Snippets Groups Projects
Commit b6babd71 authored by Guillaume Pasero's avatar Guillaume Pasero
Browse files

ENH: better display of GDAL checks

parent e352f549
No related branches found
No related tags found
No related merge requests found
......@@ -197,10 +197,17 @@ if(GDAL_CONFIG_CHECKING)
endif()
message(STATUS " Version : ${GDAL_VERSION}")
message(STATUS " Drivers for JPEG 2000 : ")
message(STATUS " Jasper : ${GDAL_HAS_J2K_JG2000}")
message(STATUS " OpenJPEG : ${GDAL_HAS_J2K_OPJG}")
message(STATUS " Kakadu : ${GDAL_HAS_J2K_KAK}")
message(STATUS " ECW : ${GDAL_HAS_J2K_ECW}")
if(GDAL_HAS_J2K_JG2000)
message(STATUS " Jasper (will not be used)")
endif()
if(GDAL_HAS_J2K_OPJG)
message(STATUS " OpenJPEG")
endif()
if(GDAL_HAS_J2K_KAK)
message(STATUS " Kakadu")
endif()
if(GDAL_HAS_J2K_ECW)
message(STATUS " ECW")
endif()
endif() #GDAL_CONFIG_CHECKING
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment