X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FCMakeLists.txt;h=9e7065a497aad21c277684d22ed4d50ebc38b032;hb=0bcc188c6d5185375f809253e8b9b97c856d2eac;hp=d3980849d4a5f90fd8edd47ca5ef5ff9f786b422;hpb=ba355c8e668e9da685de102607f7001aa8504d7d;p=gdcm.git diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index d3980849..9e7065a4 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -2,9 +2,12 @@ # Rebuild gdcm whenever a file starting with gdcm* is modified INCLUDE_REGULAR_EXPRESSION("^gdcm.*$") +SET(GDCM_LIBRARIES gdcm CACHE INTERNAL "libraries for GDCM") + +SET(OPJ_PREFIX gdcm) SUBDIRS( gdcmjpeg - gdcmmpeg2 + #gdcmmpeg2 #gdcmjpegls gdcmopenjpeg ) @@ -18,21 +21,24 @@ INCLUDE_DIRECTORIES( ${GDCM_SOURCE_DIR}/src/gdcmopenjpeg/libopenjpeg ) -SET(libgdcm_la_SOURCES +SET(GDCM_SOURCES gdcmArgMgr.cxx gdcmBase.cxx + gdcmCallbackCommand.cxx + gdcmCommand.cxx + gdcmCommandManager.cxx gdcmDataEntry.cxx gdcmDebug.cxx gdcmDicomDir.cxx gdcmDicomDirElement.cxx gdcmDicomDirImage.cxx + gdcmDicomDirPrivate.cxx gdcmDicomDirMeta.cxx gdcmDicomDirObject.cxx gdcmDicomDirPatient.cxx gdcmDicomDirVisit.cxx gdcmDicomDirSerie.cxx gdcmDicomDirStudy.cxx - gdcmDicomEntry.cxx gdcmDict.cxx gdcmDictEntry.cxx gdcmDictGroupName.cxx @@ -53,7 +59,7 @@ SET(libgdcm_la_SOURCES gdcmJpeg12.cxx gdcmJpeg16.cxx gdcmJpeg2000.cxx - gdcmMpeg.cxx + #gdcmMpeg.cxx gdcmOrientation.cxx gdcmPixelReadConvert.cxx gdcmPixelWriteConvert.cxx @@ -70,12 +76,20 @@ SET(libgdcm_la_SOURCES ${GDCM_BINARY_DIR}/src/gdcmDefaultDicts.cxx ) -ADD_LIBRARY(gdcm ${libgdcm_la_SOURCES}) +# Since OpenJPEG does not used configured headers we have to +# do the -D alternative +IF(NOT BUILD_SHARED_LIBS) + SET_SOURCE_FILES_PROPERTIES( + ${GDCM_SOURCE_DIR}/src/gdcmJpeg2000.cxx + COMPILE_FLAGS -DOPJ_STATIC) +ENDIF(NOT BUILD_SHARED_LIBS) + +ADD_LIBRARY(gdcm ${GDCM_SOURCES}) TARGET_LINK_LIBRARIES(gdcm gdcmjpeg8 gdcmjpeg12 gdcmjpeg16 - gdcmmpeg2 + #gdcmmpeg2 gdcmopenjpeg ) IF(WIN32) @@ -90,5 +104,18 @@ IF(CMAKE_SYSTEM MATCHES "SunOS.*") TARGET_LINK_LIBRARIES(gdcm socket nsl) ENDIF(CMAKE_SYSTEM MATCHES "SunOS.*") -INSTALL_FILES(/include/gdcm "\\.h$") -INSTALL_TARGETS(/lib/gdcm/ gdcm) +IF(NOT GDCM_INSTALL_NO_DEVELOPMENT) + # Install header file used to construct the lib + #INSTALL_FILES( + # ${GDCM_INSTALL_INCLUDE_DIR} .h ${GDCM_SOURCES}) + INSTALL_FILES(${GDCM_INSTALL_INCLUDE_DIR} "\\.h$") +ENDIF(NOT GDCM_INSTALL_NO_DEVELOPMENT) + +IF(NOT GDCM_INSTALL_NO_LIBRARIES) + #Install the target itself + INSTALL_TARGETS( + ${GDCM_INSTALL_LIB_DIR} + RUNTIME_DIRECTORY ${GDCM_INSTALL_BIN_DIR} + ${GDCM_LIBRARIES}) +ENDIF(NOT GDCM_INSTALL_NO_LIBRARIES) +