X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=appli%2FcreaNewProject%2FNewProject%2Fappli%2Ftemplate_appli%2FCMakeLists.txt;h=abff49ee674856afec899e6de311122bc161976c;hb=a1069f9754d7b29ffc6fbee220e6ee45a64e6450;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..abff49e 100644 --- a/appli/creaNewProject/NewProject/appli/template_appli/CMakeLists.txt +++ b/appli/creaNewProject/NewProject/appli/template_appli/CMakeLists.txt @@ -16,8 +16,9 @@ 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} @@ -27,6 +28,10 @@ SET ( ${EXE_NAME}_LINK_LIBRARIES #---------------------------------------------------------------------------- # 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} ) #----------------------------------------------------------------------------