From bad8e2cd99dd6a1858bf078195a73e7d0a4a67e9 Mon Sep 17 00:00:00 2001 From: jean-pierre roux Date: Thu, 10 Dec 2009 11:31:12 +0000 Subject: [PATCH] Add comments --- .../NewProject/appli/template_appli/CMakeLists.txt | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) 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 !...) ) + #---------------------------------------------------------------------------- #---------------------------------------------------------------------------- -- 2.45.1