]> Creatis software - crea.git/blobdiff - appli/creaNewProject/NewProject/appli/template_appli/CMakeLists.txt
Comments
[crea.git] / appli / creaNewProject / NewProject / appli / template_appli / CMakeLists.txt
index 3b02804d60c57d12baf15c79b74d7e6421e5b541..783c94f8d427d23781ba04c316103a859aa2e07f 100644 (file)
@@ -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} )
 #----------------------------------------------------------------------------