summary refs log tree commit diff
diff options
context:
space:
mode:
authorKonstantinos Sideris <sideris.konstantin@gmail.com>2018-07-04 21:36:02 +0300
committerKonstantinos Sideris <sideris.konstantin@gmail.com>2018-07-04 21:36:02 +0300
commitec63a4fbf766ea6653b14bd19776da8cf4c9a051 (patch)
tree4fae99d9f3706994d211eb455e00d9c51c27649f
parentDon't download dependencies during build (diff)
downloadnheko-ec63a4fbf766ea6653b14bd19776da8cf4c9a051.tar.xz
Mark third-party headers as system
-rw-r--r--CMakeLists.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt

index 840eae7a..65ee0da7 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt
@@ -234,7 +234,7 @@ if(NOT LMDBXX_INCLUDE_DIR) $ENV{LIB_DIR}/include $ENV{LIB_DIR}/include/lmdbxx) endif() -include_directories(${LMDBXX_INCLUDE_DIR}) +include_directories(SYSTEM ${LMDBXX_INCLUDE_DIR}) if(NOT TWEENY_INCLUDE_DIR) find_path(TWEENY_INCLUDE_DIR @@ -244,7 +244,7 @@ if(NOT TWEENY_INCLUDE_DIR) $ENV{LIB_DIR}/include/ $ENV{LIB_DIR}/include/tweeny) endif() -include_directories(${TWEENY_INCLUDE_DIR}) +include_directories(SYSTEM ${TWEENY_INCLUDE_DIR}) include_directories(include) include_directories(include/ui)