]> Creatis software - cpPlugins.git/blob - appli/examples/CMakeLists.txt
MPR widget added. Not yet fully tested.
[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   example_MPR
16   )
17
18 FOREACH(prog ${EXAMPLES_PROGRAMS}) 
19   ADD_EXECUTABLE(
20     ${prog}
21     ${prog}.cxx
22     )
23   TARGET_LINK_LIBRARIES(
24     ${prog}
25     cpPlugins_Interface
26     )
27 ENDFOREACH(prog)
28
29 ## eof - $RCSfile$