#----------------------------------------------------------------------------
# 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 )
# )
#----------------------------------------------------------------------------
+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
# (If you created only one Library, don't forget it !...)
)
+
#----------------------------------------------------------------------------
#----------------------------------------------------------------------------