]> Creatis software - crea.git/blob - appli/creaDevManager/CMakeLists.txt
Feature #1711
[crea.git] / appli / creaDevManager / CMakeLists.txt
1 #============================================================================
2 # Builds and install the executable creaDevManager
3
4 #============================================================================
5 # Appli name
6 SET(EXE_NAME creaDevManager)
7
8 #============================================================================
9 # Sources
10 SET(${EXE_NAME}_SOURCES creaDevManager.cpp)
11
12 #============================================================================
13 # Settings
14 SET(${EXE_NAME}_HAS_GUI TRUE)
15 SET(${EXE_NAME}_CONSOLE FALSE)
16
17 #-Libraries------------------------------------------------------------------
18
19 INCLUDE_DIRECTORIES (
20
21 # USER! : Add here the directories holding th extra .h files you need
22 # e.g.
23 # ../../lib/<my_library_I_just_created>
24 ../../lib/creaDevManagerLib
25 )
26
27 #-Dependencies---------------------------------------------------------------
28
29 # DEPENDENCIES (LIBRARIES TO LINK WITH)
30 SET ( ${EXE_NAME}_LINK_LIBRARIES
31     ${crea_LIBRARIES}
32     ${WXWIDGETS_LIBRARIES}
33   #    ${KWWidgets_LIBRARIES}
34   #    ${VTK_LIBRARIES}
35   #    ${ITK_LIBRARIES}
36   #    ${GDCM_LIBRARIES}
37   #    ${BOOST_LIBRARIES}
38   
39   # USER! : Add here those agmonst the various (?) PROJECT LIBRARIES
40   # you need for the current executable
41   # (If you created only one Library, don't forget it !...) 
42   creaDevManagerLib
43 )
44
45 #-Creates and installs the exe-----------------------------------------------
46 CREA_ADD_EXECUTABLE( ${EXE_NAME} )
47 #============================================================================