X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FCMakeLists.txt;h=51109483437adbe271f0bb57b407707c2a92b685;hb=916ae67b44d778882539541c31ed430f002e5bf3;hp=4a9e2d1972ff0eac6d6fa3a179349405fa6ea669;hpb=c5f65a991b6968bdcb42edd7935be6f6a2be327e;p=gdcm.git diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 4a9e2d19..51109483 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -2,19 +2,27 @@ # Rebuild gdcm whenever a file starting with gdcm* is modified INCLUDE_REGULAR_EXPRESSION("^gdcm.*$") -# Build jpeg lib first: -SUBDIRS(gdcmjpeg) +SUBDIRS( + gdcmjpeg + #gdcmmpeg2 + gdcmjasper + gdcmjpegls + ) # "jpeglib.h" is defined here: INCLUDE_DIRECTORIES( ${GDCM_SOURCE_DIR}/src - ${GDCM_BINARY_DIR}/ #for gdcmConfigure.h + ${GDCM_SOURCE_DIR}/src/gdcmmpeg2/src/mpeg2dec + ${GDCM_BINARY_DIR} #for gdcmConfigure.h ${GDCM_BINARY_DIR}/src #for gdcmjpeg 8, 12 and 16 + ${GDCM_BINARY_DIR}/src/gdcmjasper/src/libjasper/include + ${GDCM_SOURCE_DIR}/src/gdcmjasper/src/libjasper/include ) SET(libgdcm_la_SOURCES + gdcmArgMgr.cxx gdcmBase.cxx - gdcmBinEntry.cxx + gdcmDataEntry.cxx gdcmDebug.cxx gdcmDicomDir.cxx gdcmDicomDirElement.cxx @@ -22,10 +30,13 @@ SET(libgdcm_la_SOURCES gdcmDicomDirMeta.cxx gdcmDicomDirObject.cxx gdcmDicomDirPatient.cxx + gdcmDicomDirVisit.cxx gdcmDicomDirSerie.cxx gdcmDicomDirStudy.cxx + gdcmDicomEntry.cxx gdcmDict.cxx gdcmDictEntry.cxx + gdcmDictGroupName.cxx gdcmDictSet.cxx gdcmDirList.cxx gdcmDocEntry.cxx @@ -35,49 +46,50 @@ SET(libgdcm_la_SOURCES gdcmElementSet.cxx gdcmException.cxx gdcmFile.cxx + gdcmFileHelper.cxx gdcmGlobal.cxx - gdcmHeader.cxx gdcmJPEGFragment.cxx gdcmJPEGFragmentsInfo.cxx gdcmJpeg8.cxx gdcmJpeg12.cxx gdcmJpeg16.cxx gdcmJpeg2000.cxx + # gdcmMpeg.cxx + gdcmOrientation.cxx gdcmPixelReadConvert.cxx gdcmPixelWriteConvert.cxx + gdcmRefCounter.cxx gdcmRLEFrame.cxx gdcmRLEFramesInfo.cxx gdcmSeqEntry.cxx - gdcmSerieHeader.cxx + gdcmSerieHelper.cxx gdcmSQItem.cxx gdcmTS.cxx gdcmUtil.cxx - gdcmValEntry.cxx + gdcmValidator.cxx gdcmVR.cxx ${GDCM_BINARY_DIR}/src/gdcmDefaultDicts.cxx ) -ADD_LIBRARY(gdcm ${libgdcm_la_SOURCES} ) +ADD_LIBRARY(gdcm ${libgdcm_la_SOURCES}) TARGET_LINK_LIBRARIES(gdcm gdcmjpeg8 gdcmjpeg12 gdcmjpeg16 + # gdcmmpeg2 + gdcmjasper ) IF(WIN32) IF(NOT BORLAND) - TARGET_LINK_LIBRARIES(gdcm Wsock32 Snmpapi) + TARGET_LINK_LIBRARIES(gdcm wsock32 snmpapi) ENDIF(NOT BORLAND) ENDIF(WIN32) -#Need additional library for the MacAddress code in gdcmUtil.cxx -IF(APPLE) - TARGET_LINK_LIBRARIES(gdcm "-framework IOKit" "-framework CoreFoundation") -ENDIF(APPLE) +# Need nsl to resolve gethostbyname on SunOS-5.8 +# and socket also +IF(CMAKE_SYSTEM MATCHES "SunOS.*") + TARGET_LINK_LIBRARIES(gdcm socket nsl) +ENDIF(CMAKE_SYSTEM MATCHES "SunOS.*") - -#The following is not working because when a header file is not found it tries -#to find one in the binary dir -#INSTALL_FILES(/include .h ${libgdcm_la_SOURCES}) -INSTALL_FILES(/include "\\.h$") - -INSTALL_TARGETS(/lib/ gdcm) +INSTALL_FILES(/include/gdcm "\\.h$") +INSTALL_TARGETS(/lib/gdcm/ gdcm)