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