]> Creatis software - cpPlugins.git/blob - appli/examples/CMakeLists.txt
ff76b4d6a39f64a67a7b6f072d4a279d4204e295
[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   example_ReadQuadEdgeMeshWithoutPlugins
12   )
13
14 FOREACH(prog ${EXAMPLES_PROGRAMS}) 
15   ADD_EXECUTABLE(
16     ${prog}
17     ${prog}.cxx
18     )
19   TARGET_LINK_LIBRARIES(
20     ${prog}
21     cpPlugins_Interface
22     )
23 ENDFOREACH(prog)
24
25 ## eof - $RCSfile$