X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=Example%2FCMakeLists.txt;h=814cdb461ea8ba29878b572d62416b5b6bcab8c4;hb=b8ce88766307f0197209797c4a1fc49a1045ad3a;hp=1d6156c8636a15c8d9a3ad757649ac87649df691;hpb=cba27e8db47fefa11652b98dd81d782c13eb9a80;p=gdcm.git diff --git a/Example/CMakeLists.txt b/Example/CMakeLists.txt index 1d6156c8..814cdb46 100644 --- a/Example/CMakeLists.txt +++ b/Example/CMakeLists.txt @@ -1,25 +1,52 @@ -SET(EXAMPLE_SOURCES - WriteDicom.cxx -) - # include stuff INCLUDE_DIRECTORIES( ${GDCM_SOURCE_DIR}/src/ ${GDCM_BINARY_DIR}/ ) +SET(EXAMPLE_SOURCES +#names starting with 'ex' are examples + exBuildUpDicomDir + exReadPapyrus + exReadWriteFile + exAnonymize + exAnonymizeNoLoad # without loading the Pixel Data + exColorToRGB + exGrey2RGB + exGC + exImageLighten + exOverlaysACR + +#the following are utilities + PrintDicomDir + PrintDocument + PrintFile + FindTags + MakeDicomDir + AnonymizeDicomDir # without loading it as a gdcm::DicomDir + Anonymize # for full gdcm readable files + AnonymizeNoLoad # without loading the Pixel Data + ReWrite + +#the following will be transformed into 'examples', or 'utilities' +# or will be removed +# +# Better you don't use them (not fully checked ...) + + FlatHashTablePrint + TestCopyDicom + TestChangeHeader + TestFromScratch + TestWrite + TestWriteSimple + Volume2Dicom + WriteDicomSimple + WriteRead +) -ADD_EXECUTABLE(PrintDocument PrintDocument.cxx) -TARGET_LINK_LIBRARIES(PrintDocument gdcm) - -ADD_EXECUTABLE(PrintFile PrintFile.cxx) -TARGET_LINK_LIBRARIES(PrintFile gdcm) - -ADD_EXECUTABLE(Write Write.cxx) -TARGET_LINK_LIBRARIES(Write gdcm) - -ADD_EXECUTABLE(WriteDicom WriteDicom.cxx) -TARGET_LINK_LIBRARIES(WriteDicom gdcm) +FOREACH(name ${EXAMPLE_SOURCES}) + ADD_EXECUTABLE(${name} ${name}.cxx) + TARGET_LINK_LIBRARIES(${name} gdcm) + INSTALL_TARGETS(/bin/ ${name}) +ENDFOREACH(name) -ADD_EXECUTABLE(WriteRead WriteRead.cxx) -TARGET_LINK_LIBRARIES(WriteRead gdcm)