]> Creatis software - cpPlugins.git/blob - appli/examples/CMakeLists.txt
Examples with meshes (read and render, with and without plugins) 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   example_ReadQuadEdgeMesh
12   example_ReadQuadEdgeMeshWithoutPlugins
13   example_RenderQuadEdgeMesh
14   example_RenderQuadEdgeMeshWithoutPlugins
15   )
16
17 FOREACH(prog ${EXAMPLES_PROGRAMS}) 
18   ADD_EXECUTABLE(
19     ${prog}
20     ${prog}.cxx
21     )
22   TARGET_LINK_LIBRARIES(
23     ${prog}
24     cpPlugins_Interface
25     )
26 ENDFOREACH(prog)
27
28 ## eof - $RCSfile$