]> Creatis software - crea.git/commitdiff
Add comments
authorjean-pierre roux <jean-pierre.roux@creatis.insa-lyon.fr>
Thu, 10 Dec 2009 11:31:12 +0000 (11:31 +0000)
committerjean-pierre roux <jean-pierre.roux@creatis.insa-lyon.fr>
Thu, 10 Dec 2009 11:31:12 +0000 (11:31 +0000)
appli/creaNewProject/NewProject/appli/template_appli/CMakeLists.txt

index 33ee0868a39f1c85fd0d35e7ed65ebc60a155e44..f067863608660947034720e05bb94713bd9ee74f 100644 (file)
@@ -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/<my_library_I_just_created>
+
+)
+
 #----------------------------------------------------------------------------
 # 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 !...) 
   
   )
 #----------------------------------------------------------------------------
 
 #----------------------------------------------------------------------------