]> Creatis software - gdcm.git/blobdiff - Example/CMakeLists.txt
Add exInline.cxx, to 'visualize' the difference betwwen inline an not inline
[gdcm.git] / Example / CMakeLists.txt
index f01b159e9689621a0c522f91fd6f343192c27393..0515c9675e27fab522c1366054d7ad9ae30f239d 100644 (file)
@@ -1,7 +1,7 @@
 # include stuff
 INCLUDE_DIRECTORIES(
-  ${GDCM_SOURCE_DIR}/src/
-  ${GDCM_BINARY_DIR}/
+  ${GDCM_SOURCE_DIR}/src
+  ${GDCM_BINARY_DIR}
 )
 
 SET(EXAMPLE_SOURCES
@@ -13,11 +13,15 @@ SET(EXAMPLE_SOURCES
   exGC
   exImageLighten
   exOverlaysACR
+  exCurveData
+  exExtractTag
   exSerieHelper
-            
+  exExtractDicomTags
+  exPrintTime
+  exInline
+                
 #the following are utilities
   PrintDicomDir
-  PrintDocument
   PrintFile
   MakeDicomDir
   AnonymizeDicomDir # without loading it as a gdcm::DicomDir
@@ -35,16 +39,13 @@ SET(EXAMPLE_SOURCES
   FlatHashTablePrint
   TestCopyDicom
   TestChangeHeader
-  TestFromScratch
-  TestWrite
-  TestWriteSimple
   Volume2Dicom
   WriteDicomSimple
   WriteRead
 )
 
 FOREACH(name ${EXAMPLE_SOURCES})
-  ADD_EXECUTABLE(${name} ${name}.cxx)
+  ADD_EXECUTABLE(${name} ${name}.cxx )
   TARGET_LINK_LIBRARIES(${name} gdcm)
   INSTALL_TARGETS(/bin/ ${name})
 ENDFOREACH(name)