]> Creatis software - FrontAlgorithms.git/blobdiff - tests/image/CMakeLists.txt
...
[FrontAlgorithms.git] / tests / image / CMakeLists.txt
diff --git a/tests/image/CMakeLists.txt b/tests/image/CMakeLists.txt
new file mode 100644 (file)
index 0000000..00facdf
--- /dev/null
@@ -0,0 +1,19 @@
+set(_pfx test_fpa_image_)
+set(
+  _examples
+  RegionGrow_Tautology
+  Dijkstra_Identity
+  Dijkstra_Gaussian
+  RandomWalker
+  SkeletonFilter
+  )
+foreach(_e ${_examples})
+  add_executable(${_pfx}${_e} ${_e}.cxx)
+  if(ivq_FOUND)
+    target_link_libraries(${_pfx}${_e} fpa ivq::ivq)
+  else(ivq_FOUND)
+    target_link_libraries(${_pfx}${_e} fpa)
+  endif(ivq_FOUND)
+endforeach(_e)
+
+## eof - $RCSfile$