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

Moved .h files to include folder. Adapted CMakeLists.txt file to this change.

parent 7356b82b
No related branches found
No related tags found
No related merge requests found
File moved
File moved
File moved
File moved
File moved
......@@ -2,20 +2,20 @@
SET(sources asterx1_gps.cpp stream_gps.cpp asterx1exceptions.cpp)
# application header files
SET(headers asterx1_gps.h stream_gps.h asterx1exceptions.h gps_types.h)
SET(headers ../include/asterx1_gps.h ../include/stream_gps.h ../include/asterx1exceptions.h ../include/gps_types.h)
# driver source files
SET(process_sources asterx1_process.cpp)
# application header files
SET(process_headers asterx1_process.h)
SET(process_headers ../include/asterx1_process.h)
# locate the the necessary dependencies
FIND_PACKAGE(iriutils)
FIND_PACKAGE(comm)
# add the necessary include directories
INCLUDE_DIRECTORIES(.)
INCLUDE_DIRECTORIES(../include/)
INCLUDE_DIRECTORIES(${iriutils_INCLUDE_DIR})
INCLUDE_DIRECTORIES(${comm_INCLUDE_DIR})
......
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