]> Creatis software - cpPlugins.git/blob - appli/bash/CMakeLists.txt
3a244afe15f61f6293b07c0707a7cfe6f1f9d08a
[cpPlugins.git] / appli / bash / CMakeLists.txt
1 ## =========================================================================
2 ## @author Leonardo Florez-Valencia (florez-l@javeriana.edu.co)
3 ## =========================================================================
4
5 ## == List bash applications
6 set(_pfx cpPlugins_bash_)
7 set(
8   _apps
9   ConvertImage
10   )
11 if(UNIX)
12   list(APPEND _apps CreateWin32Installer)
13 endif(UNIX)
14
15 ## == Compile them
16 foreach(_a ${_apps})
17   BuildApplication(
18     ${_pfx}${_a}
19     INSTALL
20     SOURCE ${_a}.cxx
21     LINKS ${ITK_LIBRARIES}
22     )
23 endforeach(_a)
24
25 ## eof - $RCSfile$