X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=Example%2FCMakeLists.txt;h=814cdb461ea8ba29878b572d62416b5b6bcab8c4;hb=4695af60407895e5f0851ffcb9afdb138c9870f7;hp=49a7f835864dfb2fb9ef5055999fa815ef528c52;hpb=b3550f0f5c6881e60b6f6b981760b75b0eedf1d8;p=gdcm.git diff --git a/Example/CMakeLists.txt b/Example/CMakeLists.txt index 49a7f835..814cdb46 100644 --- a/Example/CMakeLists.txt +++ b/Example/CMakeLists.txt @@ -10,18 +10,29 @@ SET(EXAMPLE_SOURCES exReadPapyrus exReadWriteFile exAnonymize - + exAnonymizeNoLoad # without loading the Pixel Data + exColorToRGB + exGrey2RGB + exGC + exImageLighten + exOverlaysACR + #the following are utilities PrintDicomDir PrintDocument PrintFile - PrintHeader 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 @@ -36,5 +47,6 @@ SET(EXAMPLE_SOURCES FOREACH(name ${EXAMPLE_SOURCES}) ADD_EXECUTABLE(${name} ${name}.cxx) TARGET_LINK_LIBRARIES(${name} gdcm) + INSTALL_TARGETS(/bin/ ${name}) ENDFOREACH(name)