X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2Fgdcmopenjpeg%2FCMakeLists.txt;h=c8f6e7c2afee99744cfab49acfd547616f880ae9;hb=1f9855840e616065eb9ef1b99f69680541b68aad;hp=35d2019b2e096e5a5235fb0dd6c3c10782630c2e;hpb=b04328934019f7df41631ee9ddd5750c91b5dc28;p=gdcm.git diff --git a/src/gdcmopenjpeg/CMakeLists.txt b/src/gdcmopenjpeg/CMakeLists.txt index 35d2019b..c8f6e7c2 100644 --- a/src/gdcmopenjpeg/CMakeLists.txt +++ b/src/gdcmopenjpeg/CMakeLists.txt @@ -1,25 +1,42 @@ -PROJECT(OPENJPEG) - -# For openjpeg team if they ever want Dart+CMake -IF(FALSE) - ENABLE_TESTING() - INCLUDE (${CMAKE_ROOT}/Modules/Dart.cmake) -ENDIF(FALSE) +PROJECT(OPENJPEG C) #----------------------------------------------------------------------------- # OPENJPEG version number, usefull for packaging and doxygen doc: -SET(OPENJPEG_MAJOR_VERSION 0) -SET(OPENJPEG_MINOR_VERSION 97) +SET(OPENJPEG_MAJOR_VERSION 1) +SET(OPENJPEG_MINOR_VERSION 0) SET(OPENJPEG_BUILD_VERSION 0) SET(OPENJPEG_VERSION - "${OPENJPEG_MAJOR_VERSION}.${OPENJPEG_MINOR_VERSION}.${OPENJPEG_BUILD_VERSION}") + "${OPENJPEG_MAJOR_VERSION}.${OPENJPEG_MINOR_VERSION}.${OPENJPEG_BUILD_VERSION}") +#----------------------------------------------------------------------------- +# OpenJPEG build configuration options. +OPTION(BUILD_SHARED_LIBS "Build OpenJPEG with shared libraries." OFF) + +#----------------------------------------------------------------------------- +# For the codec... +OPTION(BUILD_EXAMPLES "Build the Examples (codec...)." OFF) #----------------------------------------------------------------------------- +# Always build the library SUBDIRS( - libopenjpeg - #codec - ) + libopenjpeg + ) +#----------------------------------------------------------------------------- +# Build example only if requested +IF(BUILD_EXAMPLES) + SUBDIRS(codec) +ENDIF(BUILD_EXAMPLES) -# TODO, technically we should not have to ... +#----------------------------------------------------------------------------- +# For openjpeg team if they ever want Dart+CMake +IF(OPJ_STANDALONE) + INCLUDE(Dart) + MARK_AS_ADVANCED(BUILD_TESTING DART_ROOT TCL_TCLSH) + IF(BUILD_TESTING) + ENABLE_TESTING() + ENDIF(BUILD_TESTING) +ENDIF(OPJ_STANDALONE) + +# TODO, technically we should add tests, e.g: # http://www.crc.ricoh.com/~gormish/jpeg2000conformance/ +