X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=CMakeLists.txt;h=bc048b2e2bfb63d0d3d21c27773c6f7c0ed088cb;hb=a600d8f4e2c21ea0532d4af3dc6374b60b93c583;hp=82a79ea070bb1558435e0e6b28dc250a6de6cc53;hpb=223a39b51e24c3efe565c4c3276bcbd8c3d4db4d;p=openjpeg.git diff --git a/CMakeLists.txt b/CMakeLists.txt index 82a79ea0..bc048b2e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,19 +34,18 @@ SET(OPENJPEG_VERSION "${OPENJPEG_VERSION_MAJOR}.${OPENJPEG_VERSION_MINOR}.${OPENJPEG_VERSION_BUILD}") SET(PACKAGE_VERSION "${OPENJPEG_VERSION_MAJOR}.${OPENJPEG_VERSION_MINOR}.${OPENJPEG_VERSION_BUILD}") -# This setting of SOVERSION assumes that any API change -# will increment either the minor or major version number of openjpeg SET(OPENJPEG_LIBRARY_PROPERTIES VERSION "${OPENJPEG_VERSION_MAJOR}.${OPENJPEG_VERSION_MINOR}.${OPENJPEG_VERSION_BUILD}" - SOVERSION "${OPENJPEG_VERSION_MAJOR}.${OPENJPEG_VERSION_MINOR}" + SOVERSION "${OPENJPEG_VERSION_MAJOR}" ) -# You will also need to define a value for the following variables: -# OPENJPEG_INSTALL_BIN_DIR - binary dir (executables) -# OPENJPEG_INSTALL_LIB_DIR - library dir (libs) -# OPENJPEG_INSTALL_DATA_DIR - share dir (say, examples, data, etc) -# OPENJPEG_INSTALL_INCLUDE_DIR - include dir (headers) +# -------------------------------------------------------------------------- +# Path to additional CMake modules +SET(CMAKE_MODULE_PATH + ${CMAKE_SOURCE_DIR}/CMake + ${CMAKE_MODULE_PATH}) +# -------------------------------------------------------------------------- # On Visual Studio 8 MS deprecated C. This removes all 1.276E1265 security # warnings IF(WIN32) @@ -77,7 +76,7 @@ ENDIF(WIN32) # Install directories STRING(TOLOWER ${PROJECT_NAME} projectname) -SET(subdir "${projectname}-${OPENJPEG_VERSION_MAJOR}.${OPENJPEG_VERSION_MINOR}") +SET(OPENJPEG_INSTALL_SUBDIR "${projectname}-${OPENJPEG_VERSION_MAJOR}.${OPENJPEG_VERSION_MINOR}") IF(NOT OPENJPEG_INSTALL_BIN_DIR) SET(OPENJPEG_INSTALL_BIN_DIR "bin") @@ -88,7 +87,7 @@ IF(NOT OPENJPEG_INSTALL_LIB_DIR) ENDIF(NOT OPENJPEG_INSTALL_LIB_DIR) IF(NOT OPENJPEG_INSTALL_DATA_DIR) - SET(OPENJPEG_INSTALL_DATA_DIR "share/${subdir}") + SET(OPENJPEG_INSTALL_DATA_DIR "share/${OPENJPEG_INSTALL_SUBDIR}") ENDIF(NOT OPENJPEG_INSTALL_DATA_DIR) IF(NOT OPENJPEG_INSTALL_INCLUDE_DIR) @@ -100,40 +99,35 @@ IF(NOT OPENJPEG_INSTALL_MAN_DIR) ENDIF(NOT OPENJPEG_INSTALL_MAN_DIR) IF(NOT OPENJPEG_INSTALL_DOC_DIR) - SET(OPENJPEG_INSTALL_DOC_DIR "share/doc/${subdir}") + SET(OPENJPEG_INSTALL_DOC_DIR "share/doc/${OPENJPEG_INSTALL_SUBDIR}") ENDIF(NOT OPENJPEG_INSTALL_DOC_DIR) IF(NOT OPENJPEG_INSTALL_PACKAGE_DIR) - SET(OPENJPEG_INSTALL_PACKAGE_DIR ${OPENJPEG_INSTALL_LIB_DIR}/${subdir} + SET(OPENJPEG_INSTALL_PACKAGE_DIR ${OPENJPEG_INSTALL_LIB_DIR}/${OPENJPEG_INSTALL_SUBDIR} CACHE INTERNAL "") ENDIF(NOT OPENJPEG_INSTALL_PACKAGE_DIR) #----------------------------------------------------------------------------- # Test for some required system information. +# For example this macro test the endianness (CMAKE_WORDS_BIGENDIAN) INCLUDE (${CMAKE_ROOT}/Modules/CMakeBackwardCompatibilityC.cmake) -#----------------------------------------------------------------------------- -# Test for getopt being available in this system -INCLUDE (${PROJECT_SOURCE_DIR}/CMake/CheckHaveGetopt.cmake ) - #----------------------------------------------------------------------------- # Setup file for setting custom ctest vars CONFIGURE_FILE( - ${CMAKE_CURRENT_SOURCE_DIR}/CMake/CTestCustom.cmake.in - ${CMAKE_CURRENT_BINARY_DIR}/CTestCustom.cmake + ${CMAKE_SOURCE_DIR}/CMake/CTestCustom.cmake.in + ${CMAKE_BINARY_DIR}/CTestCustom.cmake @ONLY ) #----------------------------------------------------------------------------- # OpenJPEG build configuration options. -OPTION(BUILD_SHARED_LIBS "Build OpenJPEG with shared libraries." ON) - -#----------------------------------------------------------------------------- +OPTION(BUILD_SHARED_LIBS "Build OpenJPEG shared library and link executables against it." ON) SET (EXECUTABLE_OUTPUT_PATH ${OPENJPEG_BINARY_DIR}/bin CACHE PATH "Single output directory for building all executables.") SET (LIBRARY_OUTPUT_PATH ${OPENJPEG_BINARY_DIR}/bin CACHE PATH "Single output directory for building all libraries.") MARK_AS_ADVANCED(LIBRARY_OUTPUT_PATH EXECUTABLE_OUTPUT_PATH) - +#----------------------------------------------------------------------------- # configure name mangling to allow multiple libraries to coexist # peacefully IF(EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/openjpeg_mangle.h.in) @@ -144,70 +138,11 @@ CONFIGURE_FILE(${CMAKE_CURRENT_SOURCE_DIR}/openjpeg_mangle.h.in ENDIF(EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/openjpeg_mangle.h.in) #----------------------------------------------------------------------------- -# Always build the library -INCLUDE_DIRECTORIES(BEFORE ${CMAKE_CURRENT_BINARY_DIR}) -SUBDIRS(libopenjpeg) - -#----------------------------------------------------------------------------- -# Build CODEC binaries ? -OPTION(BUILD_CODEC "Build the CODEC binaries" ON) -IF(BUILD_CODEC) - SUBDIRS(codec) -ENDIF(BUILD_CODEC) - -#----------------------------------------------------------------------------- -# Build MJ2 binaries ? -OPTION(BUILD_MJ2 "Build the MJ2 binaries." OFF) -IF(BUILD_MJ2) - SUBDIRS(mj2) -ENDIF(BUILD_MJ2) - -#----------------------------------------------------------------------------- -# Build JPWL binaries ? -OPTION(BUILD_JPWL "Build the JPWL binaries" OFF) -IF(BUILD_JPWL) - SUBDIRS(jpwl) -ENDIF(BUILD_JPWL) - -#----------------------------------------------------------------------------- -# Build JP3D binaries ? -OPTION(BUILD_JP3D "Build the JP3D binaries" OFF) -IF(BUILD_JP3D) - SUBDIRS(jp3d) -ENDIF(BUILD_JP3D) - -#----------------------------------------------------------------------------- -# Build INDEXER_JPIP binaries ? -OPTION(BUILD_INDEXER_JPIP "Build the INDEXER_JPIP binaries" OFF) -IF(BUILD_INDEXER_JPIP AND NOT UNIX) - SUBDIRS(indexer_JPIP) -ENDIF(BUILD_INDEXER_JPIP AND NOT UNIX) - -#----------------------------------------------------------------------------- -# Build DOCUMENTATION ? -OPTION(BUILD_DOC "Build the doxygen documentation" OFF) -IF(BUILD_DOC) - SUBDIRS(doc) -ENDIF(BUILD_DOC) - -#----------------------------------------------------------------------------- -# For openjpeg team if they ever want CDash+CMake -OPTION(BUILD_TESTING "Build the tests." OFF) -IF(BUILD_TESTING) - ENABLE_TESTING() - INCLUDE(CTest) -ENDIF(BUILD_TESTING) - -# Adding test with dataset from: -# http://www.crc.ricoh.com/~gormish/jpeg2000conformance/ -# -> wget http://www.crc.ricoh.com/~gormish/jpeg2000conformance/j2kp4files_v1_5.zip -# http://www.jpeg.org/jpeg2000guide/testimages/testimages.html -#----------------------------------------------------------------------------- -# Adding JPEG2000_CONFORMANCE_DATA_ROOT -FIND_PATH(JPEG2000_CONFORMANCE_DATA_ROOT testimages.html - ${OPENJPEG_SOURCE_DIR}/../jpeg2000testimages - $ENV{JPEG2000_CONFORMANCE_DATA_ROOT} -) +# pkgconfig support +CONFIGURE_FILE(${CMAKE_CURRENT_SOURCE_DIR}/libopenjpeg1.pc.cmake ${CMAKE_CURRENT_BINARY_DIR}/libopenjpeg1.pc @ONLY) +INSTALL( FILES ${CMAKE_CURRENT_BINARY_DIR}/libopenjpeg1.pc DESTINATION ${OPENJPEG_INSTALL_LIB_DIR}/pkgconfig ) +INSTALL( CODE + "EXECUTE_PROCESS(COMMAND ${CMAKE_COMMAND} -E create_symlink \"libopenjpeg1.pc\" \"\$ENV{DESTDIR}${OPENJPEG_INSTALL_LIB_DIR}/pkgconfig/libopenjpeg.pc\")") #----------------------------------------------------------------------------- # Compiler specific flags: @@ -218,33 +153,8 @@ IF(CMAKE_COMPILER_IS_GNUCC) SET(CMAKE_C_FLAGS_RELEASE "-ffast-math ${CMAKE_C_FLAGS_RELEASE}") ENDIF(CMAKE_COMPILER_IS_GNUCC) -# install all targets referenced as OPENJPEGTargets -install(EXPORT OpenJPEGTargets DESTINATION ${OPENJPEG_INSTALL_PACKAGE_DIR}) -CONFIGURE_FILE( ${OPENJPEG_SOURCE_DIR}/CMake/OpenJPEGConfig.cmake.in - ${OPENJPEG_BINARY_DIR}/OpenJPEGConfig.cmake - @ONLY -) -INSTALL( FILES ${OPENJPEG_BINARY_DIR}/OpenJPEGConfig.cmake - DESTINATION ${OPENJPEG_INSTALL_PACKAGE_DIR} -) -# -IF(UNIX OR CYGWIN) - SET(CMAKE_INCLUDE_PATH /usr/include /usr/local/include /opt/include - /opt/local/include /usr/include/libpng /usr/include/libpng14 - /usr/include/libpng12 /usr/local/include/libpng - /usr/local/include/libpng14 /usr/local/include/libpng12 - /opt/include/libpng /opt/include/libpng14 /opt/include/libpng12 - /opt/local/include/libpng /opt/local/include/libpng14 - /opt/local/include/libpng12 ) - SET(CMAKE_LIBRARY_PATH /usr/lib /usr/local/lib /opt/lib /opt/local/lib) -ELSEIF(WIN32) - SET(CMAKE_INCLUDE_PATH ${OPENJPEG_SOURCE_DIR}/libs/libtiff - ${OPENJPEG_SOURCE_DIR}/libs/png ${OPENJPEG_SOURCE_DIR}/libs/lcms2 - C:/WINDOWS/system32/user ) - SET(CMAKE_LIBRARY_PATH ${OPENJPEG_SOURCE_DIR}/libs/libtiff - C:/WINDOWS/system32/user ) -ENDIF() -# +#----------------------------------------------------------------------------- +# opj_config.h generation (1/2) FIND_FILE(HAVE_STRINGS_H_FOUND strings.h) IF(NOT HAVE_STRINGS_H_FOUND STREQUAL "HAVE_STRINGS_H_FOUND-NOTFOUND") FIND_FILE(HAVE_STRINGS_H strings.h) @@ -290,72 +200,79 @@ IF(NOT HAVE_UNISTD_H_FOUND STREQUAL "HAVE_UNISTD_H_FOUND-NOTFOUND") FIND_FILE(HAVE_UNISTD_H unistd.h) SET(HAS_UNISTD_H 1) ENDIF() -# -# Does the system have png library installed ? -# -FIND_PACKAGE(PNG) -# -IF(PNG_FOUND) - SET(HAVE_PNG_H 1) - SET(HAVE_LIBPNG 1) -ENDIF() -# -# Does the system have tiff library installed ? -# -FIND_PACKAGE(TIFF) -# -IF(TIFF_FOUND) - SET(HAVE_TIFF_H 1) - SET(HAVE_LIBTIFF 1) -ENDIF() -# -# -# Does the system have lcms library installed ? -# -SET(LCMS_LIB "") -FIND_FILE(LCMS2_HEADER_FOUND lcms2.h) -# -IF(LCMS2_HEADER_FOUND STREQUAL "LCMS2_HEADER_FOUND-NOTFOUND") - SET(LCMS2_HEADER_FOUND "") -ENDIF() -IF(LCMS2_HEADER_FOUND) - FIND_PATH(LCMS_INCLUDE_DIR lcms2.h) - IF(UNIX OR CYGWIN) - FIND_LIBRARY(HAVE_LIBLCMS2 lcms2) - ELSE() - FIND_LIBRARY(HAVE_LIBLCMS2 lcms2_static.lib) - ENDIF() - IF(HAVE_LIBLCMS2 STREQUAL "HAVE_LIBLCMS2-NOTFOUND") - SET(HAVE_LIBLCMS2 "") - ENDIF() - IF(HAVE_LIBLCMS2) - SET(LCMS_LIB "${HAVE_LIBLCMS2}") - SET(HAVE_LCMS2_LIB 1) - SET(HAVE_LCMS2_H 1) - ENDIF() -ENDIF() -IF(NOT LCMS2_HEADER_FOUND) - FIND_FILE(LCMS1_HEADER_FOUND lcms.h) - IF(LCMS1_HEADER_FOUND STREQUAL "LCMS1_HEADER_FOUND-NOTFOUND") - SET(LCMS1_HEADER_FOUND "") - ENDIF() - IF(LCMS1_HEADER_FOUND) - FIND_PATH(LCMS_INCLUDE_DIR lcms.h) - FIND_LIBRARY(HAVE_LIBLCMS1 lcms) - IF(HAVE_LIBLCMS1 STREQUAL "HAVE_LIBLCMS1-NOTFOUND") - SET(HAVE_LIBLCMS1 "") - ENDIF() - IF(HAVE_LIBLCMS1) - SET(LCMS_LIB "${HAVE_LIBLCMS1}") - SET(HAVE_LCMS1_LIB 1) - SET(HAVE_LCMS1_H 1) - ENDIF() - ENDIF() -ENDIF() -# -# generate opj_config.h + +#----------------------------------------------------------------------------- +# Build Library +INCLUDE_DIRECTORIES(BEFORE ${OPENJPEG_BINARY_DIR}) +ADD_SUBDIRECTORY(libopenjpeg) + +#----------------------------------------------------------------------------- +# Build Applications +OPTION(BUILD_CODEC "Build the CODEC executables" ON) +OPTION(BUILD_MJ2 "Build the MJ2 executables." OFF) +OPTION(BUILD_JPIP "Build the JPIP library and executables." OFF) + +IF(BUILD_CODEC OR BUILD_MJ2 OR BUILD_JPIP) + OPTION(BUILD_THIRDPARTY "Build the thirdparty executables if it is needed" OFF) + ADD_SUBDIRECTORY(thirdparty) + ADD_SUBDIRECTORY(applications) +ENDIF (BUILD_CODEC OR BUILD_MJ2 OR BUILD_JPIP) + +#----------------------------------------------------------------------------- +# opj_config.h generation (2/2) CONFIGURE_FILE("${OPENJPEG_SOURCE_DIR}/opj_configh.cmake.in" - "${OPENJPEG_BINARY_DIR}/opj_config.h" - @ONLY + "${OPENJPEG_BINARY_DIR}/opj_config.h" + @ONLY + ) + +#----------------------------------------------------------------------------- +# Build JPWL-flavoured library and executables +OPTION(BUILD_JPWL "Build the JPWL library and executables" OFF) + +#----------------------------------------------------------------------------- +# Build DOCUMENTATION (not in ALL target and only if Doxygen is found) +ADD_SUBDIRECTORY(doc) + +#----------------------------------------------------------------------------- +# Buld Testing +OPTION(BUILD_TESTING "Build the tests." OFF) +IF(BUILD_TESTING) + IF(BUILD_CODEC) + ENABLE_TESTING() + INCLUDE(CTest) + + # Search openjpeg data needed for the tests + # They could be found via svn on the OpenJPEG google code project + # svn checkout http://openjpeg.googlecode.com/svn/data (about 70 Mo) + FIND_PATH(OPJ_DATA_ROOT README-OPJ-Data + PATHS $ENV{OPJ_DATA_ROOT} ${CMAKE_SOURCE_DIR}/../data) + + # For encoding tests we need the path to the ref decoder exe/lib (kakadu) + SET (REF_DECODER_BIN_PATH "NOTFOUND" CACHE PATH "Single directory where find the reference decoder binaries to enable encoding test suite.") + MARK_AS_ADVANCED(REF_DECODER_BIN_PATH) + + # Add repository where to find tests + ADD_SUBDIRECTORY(tests) + + ELSE(BUILD_CODEC) + message(FATAL_ERROR "You need build codec to run the tests") + ENDIF(BUILD_CODEC) +ENDIF(BUILD_TESTING) + +#----------------------------------------------------------------------------- +# install all targets referenced as OPENJPEGTargets +INSTALL(EXPORT OpenJPEGTargets DESTINATION ${OPENJPEG_INSTALL_PACKAGE_DIR}) +CONFIGURE_FILE( ${OPENJPEG_SOURCE_DIR}/CMake/OpenJPEGConfig.cmake.in + ${OPENJPEG_BINARY_DIR}/OpenJPEGConfig.cmake + @ONLY +) +INSTALL( FILES ${OPENJPEG_BINARY_DIR}/OpenJPEGConfig.cmake + DESTINATION ${OPENJPEG_INSTALL_PACKAGE_DIR} ) +#----------------------------------------------------------------------------- +# install CHANGES and LICENSE +INSTALL( + FILES CHANGES + LICENSE + DESTINATION ${OPENJPEG_INSTALL_DOC_DIR})