Sha256: 4869d91439403ed29f454ab166a462b3fa68f0dc12623a56235a60b25977bc2a
Contents?: true
Size: 1.3 KB
Versions: 60
Compression:
Stored size: 1.3 KB
Contents
#----------------------------------------------------------------------------- # # OPENJPEGConfig.cmake - CMake configuration file for external projects. # # This file is configured by OPENJPEG and used by the UseOPENJPEG.cmake # module to load OPENJPEG's settings for an external project. # The OPENJPEG version number. set(OPENJPEG_MAJOR_VERSION "2") set(OPENJPEG_MINOR_VERSION "1") set(OPENJPEG_BUILD_VERSION "0") # The libraries. set(OPENJPEG_LIBRARIES "openjp2") # The CMake macros dir. set(OPENJPEG_CMAKE_DIR "lib/openjpeg-2.1") # The configuration options. set(OPENJPEG_BUILD_SHARED_LIBS "ON") # The "use" file. set(OPENJPEG_USE_FILE "") get_filename_component(SELF_DIR "${CMAKE_CURRENT_LIST_FILE}" PATH) if(EXISTS ${SELF_DIR}/OpenJPEGTargets.cmake) # This is an install tree include(${SELF_DIR}/OpenJPEGTargets.cmake) get_filename_component(OPENJPEG_INCLUDE_ROOT "${SELF_DIR}/../../include/openjpeg-2.1" ABSOLUTE) set(OPENJPEG_INCLUDE_DIRS ${OPENJPEG_INCLUDE_ROOT}) else() if(EXISTS ${SELF_DIR}/OpenJPEGExports.cmake) # This is a build tree set( OPENJPEG_INCLUDE_DIRS ) include(${SELF_DIR}/OpenJPEGExports.cmake) else() message(FATAL_ERROR "ooops") endif() endif() set(OPENJPEG_USE_FILE ${SELF_DIR}/UseOPENJPEG.cmake) # Backward compatible part: set(OPENJPEG_FOUND TRUE)
Version data entries
60 entries across 60 versions & 1 rubygems