]> Creatis software - cpPlugins.git/blob - appli/examples/CMakeLists.txt
Series reader added.
[cpPlugins.git] / appli / examples / CMakeLists.txt
1
2 ## =========================
3 ## = Command line programs =
4 ## =========================
5
6 SET(
7   EXAMPLES_PROGRAMS
8   example_LoadPlugins
9   example_ReadWriteImage
10   example_ReadImageSeriesWriteImage
11   )
12
13 FOREACH(prog ${EXAMPLES_PROGRAMS}) 
14   ADD_EXECUTABLE(
15     ${prog}
16     ${prog}.cxx
17     )
18   TARGET_LINK_LIBRARIES(
19     ${prog}
20     cpPlugins_Interface
21     )
22 ENDFOREACH(prog)
23
24 ## eof - $RCSfile$