X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=appli%2FcreaNewProject%2FNewProject%2Fappli%2Ftemplate_appli%2FCMakeLists.txt;h=783c94f8d427d23781ba04c316103a859aa2e07f;hb=7e0420a0058d96d70b04c78a1cc9f82ac1f8c091;hp=3b02804d60c57d12baf15c79b74d7e6421e5b541;hpb=6d6ccd8647eb8319b2ad0b6bacc5d369d3883ff1;p=crea.git diff --git a/appli/creaNewProject/NewProject/appli/template_appli/CMakeLists.txt b/appli/creaNewProject/NewProject/appli/template_appli/CMakeLists.txt index 3b02804..783c94f 100644 --- a/appli/creaNewProject/NewProject/appli/template_appli/CMakeLists.txt +++ b/appli/creaNewProject/NewProject/appli/template_appli/CMakeLists.txt @@ -16,17 +16,27 @@ FILE(GLOB ${EXE_NAME}_SOURCES *.cxx *.cpp *.cc) #---------------------------------------------------------------------------- # DEPENDENCIES (LIBRARIES TO LINK WITH) SET ( ${EXE_NAME}_LINK_LIBRARIES - ${crea_LIBRARIES} + # ${crea_LIBRARIES} # ${WXWIDGETS_LIBRARIES} + # ${KWWidgets_LIBRARIES} # ${VTK_LIBRARIES} # ${ITK_LIBRARIES} # ${GDCM_LIBRARIES} # ${BOOST_LIBRARIES} + + # Add here those agmonst the various (?) PROJECT LIBRARIES you need + # for the current executable + # (If there is only one, don't forget it !) + ) #---------------------------------------------------------------------------- #---------------------------------------------------------------------------- # CREATES AND INSTALLS THE EXE +# Set to ON if your appli has a GUI (to build as a Win32 app on windows) +SET(${EXE_NAME}_HAS_GUI OFF) +# Set to ON if your appli has a GUI but you also want a msdos console on windows +SET(${EXE_NAME}_CONSOLE OFF) CREA_ADD_EXECUTABLE( ${EXE_NAME} ) #----------------------------------------------------------------------------