X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2Fgdcmopenjpeg%2FCMakeLists.txt;h=a2b8d36e92fb639e753860a6984662f4795c1972;hb=bd7bec4c367d671a9da358584e98a8ec29bb641e;hp=94fa53f0f4f387b2b2c44c94b3d9a7843fbb6f79;hpb=7452f3039ff4dd2574fcbf3343b530a2f20f9623;p=gdcm.git diff --git a/src/gdcmopenjpeg/CMakeLists.txt b/src/gdcmopenjpeg/CMakeLists.txt index 94fa53f0..a2b8d36e 100644 --- a/src/gdcmopenjpeg/CMakeLists.txt +++ b/src/gdcmopenjpeg/CMakeLists.txt @@ -1,24 +1,57 @@ -PROJECT(OPENJPEG) +# Main CMakeLists.txt to build the OpenJPEG project using CMake (www.cmake.org) +# Written by Mathieu Malaterre + +# This CMake project will by default create a library called openjpeg +# But if you want to use this project within your own (CMake) project +# you will eventually like to prefix the library to avoid linking confusion +# For this purpose you can define a CMake var: OPJ_PREFIX to whatever you like +# e.g.: +# SET(OPJ_PREFIX "gdcm") +# Also if you want to test (CTest driven) you need to define : +# OPJ_STANDALONE to 1, e.g +# OPJ_STANDALONE:BOOL=1 +PROJECT(OPENJPEG C) +CMAKE_MINIMUM_REQUIRED(VERSION 2.0) #----------------------------------------------------------------------------- # 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}") #----------------------------------------------------------------------------- -# Build shared lib by default -OPTION(OPENJPEG_BUILD_SHARED_LIBS "Build OPENJPEG with shared libraries." ON) -SET(BUILD_SHARED_LIBS ${OPENJPEG_BUILD_SHARED_LIBS}) +# OpenJPEG build configuration options. +OPTION(BUILD_SHARED_LIBS "Build OpenJPEG with shared libraries." OFF) #----------------------------------------------------------------------------- -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) +# 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) + +#----------------------------------------------------------------------------- +# 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() + SET(BUILDNAME "OpenJPEG-${CMAKE_SYSTEM}-${CMAKE_C_COMPILER}" CACHE STRING "Name of build on the dashboard") + MARK_AS_ADVANCED(BUILDNAME) + ENDIF(BUILD_TESTING) +ENDIF(OPJ_STANDALONE) + +# TODO, technically we should add tests, e.g: +# http://www.crc.ricoh.com/~gormish/jpeg2000conformance/ +