#============================================================================ # Builds and install the executable creaDevManager #============================================================================ # Appli name SET(EXE_NAME creaDevManager) #============================================================================ # Sources SET(${EXE_NAME}_SOURCES creaDevManager.cpp) #============================================================================ # Settings SET(${EXE_NAME}_HAS_GUI TRUE) SET(${EXE_NAME}_CONSOLE FALSE) #-Libraries------------------------------------------------------------------ INCLUDE_DIRECTORIES ( # USER! : Add here the directories holding th extra .h files you need # e.g. # ../../lib/ ../../lib/creaDevManagerLib ) #-Dependencies--------------------------------------------------------------- # DEPENDENCIES (LIBRARIES TO LINK WITH) SET ( ${EXE_NAME}_LINK_LIBRARIES ${crea_LIBRARIES} ${WXWIDGETS_LIBRARIES} # ${KWWidgets_LIBRARIES} # ${VTK_LIBRARIES} # ${ITK_LIBRARIES} # ${GDCM_LIBRARIES} # ${BOOST_LIBRARIES} # USER! : Add here those agmonst the various (?) PROJECT LIBRARIES # you need for the current executable # (If you created only one Library, don't forget it !...) creaDevManagerLib ) #-Creates and installs the exe----------------------------------------------- CREA_ADD_EXECUTABLE( ${EXE_NAME} ) #============================================================================