X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;ds=inline;f=src%2FCMakeLists.txt;h=6325c3be8974511f3c302101cfa57375cc34a95a;hb=66e76418235b3c194bd1f25f75c42687ab36c6cd;hp=8ab9f5443c7441ba3dae61c63635f356491e38c8;hpb=f766c0e34962ba7d22fe8f20f514e6a6bdd0ce29;p=gdcm.git diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 8ab9f544..6325c3be 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -2,10 +2,13 @@ # 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 - gdcmjpegls + #gdcmjpegls gdcmopenjpeg ) @@ -18,9 +21,12 @@ 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 @@ -32,7 +38,6 @@ SET(libgdcm_la_SOURCES gdcmDicomDirVisit.cxx gdcmDicomDirSerie.cxx gdcmDicomDirStudy.cxx - gdcmDicomEntry.cxx gdcmDict.cxx gdcmDictEntry.cxx gdcmDictGroupName.cxx @@ -53,7 +58,7 @@ SET(libgdcm_la_SOURCES gdcmJpeg12.cxx gdcmJpeg16.cxx gdcmJpeg2000.cxx - # gdcmMpeg.cxx + #gdcmMpeg.cxx gdcmOrientation.cxx gdcmPixelReadConvert.cxx gdcmPixelWriteConvert.cxx @@ -70,12 +75,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 +103,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) +