Skip to content
Snippets Groups Projects
Commit 7c2129fc authored by Alejandro Lopez Gestoso's avatar Alejandro Lopez Gestoso
Browse files

Adaptod to found .h files on include folder

parent 8239351d
No related branches found
No related tags found
No related merge requests found
#edit the following line to add the librarie's header files
FIND_PATH(trajectory_INCLUDE_DIR trajectory.h /usr/include/iri/trajectory /usr/local/include/iri/trajectory)
FIND_PATH(trajectory_INCLUDE_DIR trajectory.h trajectory_exceptions.h /usr/include/iri/trajectory /usr/local/include/iri/trajectory)
FIND_LIBRARY(trajectory_LIBRARY
NAMES trajectory
......
......@@ -3,11 +3,11 @@ ADD_SUBDIRECTORY(xml)
# driver source files
SET(sources trajectory.cpp trajectory_exceptions.cpp)
# application header files
SET(headers trajectory.h trajectory_exceptions.h)
SET(headers ../include/trajectory.h ../include/trajectory_exceptions.h)
# locate the necessary dependencies
FIND_PACKAGE(iriutils REQUIRED)
# add the necessary include directories
INCLUDE_DIRECTORIES(.)
INCLUDE_DIRECTORIES(. ../include/)
INCLUDE_DIRECTORIES(${iriutils_INCLUDE_DIR})
SET_SOURCE_FILES_PROPERTIES(${XSD_SOURCES} PROPERTIES GENERATED 1)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment