]> Creatis software - gdcm.git/blobdiff - Example/CMakeLists.txt
ENH: Adding debug
[gdcm.git] / Example / CMakeLists.txt
index df8f66986292ce33fa454c4e908f2c123317fa99..814cdb461ea8ba29878b572d62416b5b6bcab8c4 100644 (file)
@@ -9,18 +9,30 @@ SET(EXAMPLE_SOURCES
   exBuildUpDicomDir
   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
@@ -35,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)