diff options
author | 2019-03-01 18:41:06 +0100 | |
---|---|---|
committer | 2019-03-01 18:41:06 +0100 | |
commit | aeb2f4efe7f79cbb14bae9e991d39e1df2ff0314 (patch) | |
tree | 1c9c899949c6891d54e50f10f17979dc2577c27d | |
parent | efaa7522f58c0d8269081f2107e5fb6dc0afe9b9 (diff) |
[HICN-86] Fix include file order in libtransport and hicn-light.
Change-Id: Id4e8e6aedcdb529971583a20f34a96d1cfdcccc9
Signed-off-by: Mauro Sardara <msardara@cisco.com>
-rw-r--r-- | hicn-light/src/CMakeLists.txt | 2 | ||||
-rw-r--r-- | libtransport/src/hicn/transport/CMakeLists.txt | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/hicn-light/src/CMakeLists.txt b/hicn-light/src/CMakeLists.txt index 851b961c7..68ef851f1 100644 --- a/hicn-light/src/CMakeLists.txt +++ b/hicn-light/src/CMakeLists.txt @@ -32,7 +32,7 @@ list(APPEND COMPILER_DEFINITIONS "-DWITH_MAPME -DWITH_MAPME_FIXES" ) -list(APPEND HICN_LIGHT_INCLUDE_DIRS +list(INSERT HICN_LIGHT_INCLUDE_DIRS 0 ${CMAKE_CURRENT_SOURCE_DIR}/.. ) diff --git a/libtransport/src/hicn/transport/CMakeLists.txt b/libtransport/src/hicn/transport/CMakeLists.txt index e73a3407a..bc827ad7f 100644 --- a/libtransport/src/hicn/transport/CMakeLists.txt +++ b/libtransport/src/hicn/transport/CMakeLists.txt @@ -32,7 +32,7 @@ add_subdirectory(utils) set (COMPILER_DEFINITIONS "") -list(APPEND LIBTRANSPORT_INCLUDE_DIRS +list(INSERT LIBTRANSPORT_INCLUDE_DIRS 0 ${CMAKE_CURRENT_SOURCE_DIR}/../.. ${CMAKE_CURRENT_BINARY_DIR}/../.. ) |