]> Creatis software - cpMesh.git/blob - appli/examples/CMakeLists.txt
QuadEdgeMesh ported to cpPlugins/Extensions
[cpMesh.git] / appli / examples / CMakeLists.txt
1 ## =========================
2 ## = Command line programs =
3 ## =========================
4
5 IF(BUILD_EXAMPLES)
6   SET(
7     DEMO_PROGRAMS
8     example_QuadEdgeMeshToSimplexMesh
9     example_RenderDualMesh
10     example_SimplexMeshDeleteEdge
11     example_InternalForceSimplexMesh
12     )
13
14   FOREACH(demo_program ${DEMO_PROGRAMS}) 
15     ADD_EXECUTABLE(
16       ${demo_program}
17       ${demo_program}.cxx
18       )
19     TARGET_LINK_LIBRARIES(
20       ${demo_program}
21       cpm
22       )
23   ENDFOREACH(demo_program) 
24 ENDIF(BUILD_EXAMPLES)
25
26 ## eof - $RCSfile$