]> Creatis software - clitk.git/blobdiff - vv/CMakeLists.txt
apparently this was too ambitious as well :-/
[clitk.git] / vv / CMakeLists.txt
index 9b1a0052e13520438f9fcfd1fbdc9f303fa3e56f..5404a75faf3bfc742dd06d67725b0d64dd1178fd 100644 (file)
@@ -21,6 +21,7 @@ SET(vv_SRCS
   vvSurfaceViewerDialog.cxx
   vvMainWindowBase.cxx
   vvMainWindow.cxx
+  vvProgressDialog.cxx
   vvDeformationDialog.cxx
   vvImageWarp.cxx
   vvDeformableRegistration.cxx
@@ -46,6 +47,7 @@ SET(vv_SRCS
   vvMidPosition.cxx
   vvImageMapToWLColors.cxx
   vvIntensityValueSlider.cxx
+  vvThreadedFilter.cxx
   vvToolManager.cxx
   vvToolCreatorBase.cxx
   vvToolWidgetBase.cxx
@@ -68,10 +70,12 @@ SET(vv_SRCS
   vvToolResample.cxx
   vvBlendImageActor.cxx
   vvLabelImageLoaderWidget.cxx
+  vvToolExtractPatient.cxx
   vvToolExtractLung.cxx
   vvToolPlastimatch.cxx
 #  vvToolConnectedComponentLabeling.cxx
-  )
+)
+
 #=========================================================
 
 #=========================================================
@@ -96,6 +100,7 @@ QT4_WRAP_CPP(vv_SRCS
   vvSlicerManager.h
   vvStructSelector.h
   vvIntensityValueSlider.h
+  vvThreadedFilter.h
   vvToolCreatorBase.h
 #  vvToolFoo.h
 #  vvToolFooWithWidgetBase.h
@@ -114,6 +119,7 @@ QT4_WRAP_CPP(vv_SRCS
   vvROIActor.h
   vvToolResample.h
   vvLabelImageLoaderWidget.h
+  vvToolExtractPatient.h
   vvToolExtractLung.h
   vvToolPlastimatch.h
 #  vvToolConnectedComponentLabeling.h
@@ -148,6 +154,7 @@ QT4_WRAP_UI(vv_UI_CXX
   qt_ui/vvToolStructureSetManager.ui
   qt_ui/vvToolResample.ui
   qt_ui/vvLabelImageLoaderWidget.ui
+  qt_ui/vvToolExtractPatient.ui
   qt_ui/vvToolExtractLung.ui
   qt_ui/vvToolPlastimatch.ui
 #  qt_ui/vvToolConnectedComponentLabeling.ui
@@ -204,7 +211,16 @@ ENDIF(WIN32)
 
 LINK_DIRECTORIES(${QT_INCLUDES})
 ADD_EXECUTABLE(vv ${vv_SRCS} vv.cxx ${vv_UI_CXX} ${EXE_ICON})
-TARGET_LINK_LIBRARIES(vv clitkCommon clitkDicomRTStruct clitkFilters clitkSegmentationFilters ${ITK_LIBRARIES} QVTK vtkHybrid)
+ADD_DEPENDENCIES(vv TOOLS_GGOS SEGMENTATION_GGOS)
+TARGET_LINK_LIBRARIES(vv clitkDicomRTStruct 
+#Libs for generic filters with long compilation times
+clitkImageConvertLib 
+clitkImageResampleLib
+clitkBinarizeImageLib
+#Libs for _ggo.c files
+clitkSegmentationGgoLib clitkToolsGgoLib
+clitkRegistrationGgoLib
+clitkCommon ${ITK_LIBRARIES} QVTK vtkHybrid)
 
 #=========================================================