From: jean-pierre roux Date: Thu, 10 Dec 2009 11:31:12 +0000 (+0000) Subject: Add comments X-Git-Tag: CREATOOLS.2-0-3~46 X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=commitdiff_plain;h=bad8e2cd99dd6a1858bf078195a73e7d0a4a67e9;p=crea.git Add comments --- diff --git a/appli/creaNewProject/NewProject/appli/template_appli/CMakeLists.txt b/appli/creaNewProject/NewProject/appli/template_appli/CMakeLists.txt index 33ee086..f067863 100644 --- a/appli/creaNewProject/NewProject/appli/template_appli/CMakeLists.txt +++ b/appli/creaNewProject/NewProject/appli/template_appli/CMakeLists.txt @@ -1,7 +1,7 @@ #---------------------------------------------------------------------------- # SET THE NAME OF YOUR EXECUTABLE # Replace 'MyExe' by the name you want to give your executable. -# (a good plicy is to give the executable the same name that the directory) +# (a good policy is to give the executable the same name that the directory) ######################### SET ( EXE_NAME MyExe ) @@ -21,6 +21,14 @@ FILE(GLOB ${EXE_NAME}_SOURCES *.cxx *.cpp *.cc) # ) #---------------------------------------------------------------------------- +INCLUDE_DIRECTORIES ( + +# Add here the directories holding th extra .h files you need +# e.g. +# ../../lib/ + +) + #---------------------------------------------------------------------------- # DEPENDENCIES (LIBRARIES TO LINK WITH) SET ( ${EXE_NAME}_LINK_LIBRARIES @@ -37,6 +45,7 @@ SET ( ${EXE_NAME}_LINK_LIBRARIES # (If you created only one Library, don't forget it !...) ) + #---------------------------------------------------------------------------- #----------------------------------------------------------------------------