diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2016-10-17 07:11:34 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2016-10-17 07:11:34 +0300 |
commit | bbe68505981c448c7b81e1ad98fc038ef19d0c17 (patch) | |
tree | ad589e44a12c232ba71d435e1c17c9e984032864 /cxx | |
parent | CMakeLists.txt: code style (diff) | |
download | aes-tools-bbe68505981c448c7b81e1ad98fc038ef19d0c17.tar.gz aes-tools-bbe68505981c448c7b81e1ad98fc038ef19d0c17.zip |
fix compiler warnings
Diffstat (limited to 'cxx')
-rw-r--r-- | cxx/CMakeLists.txt | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cxx/CMakeLists.txt b/cxx/CMakeLists.txt index 9dddb5c..d54caae 100644 --- a/cxx/CMakeLists.txt +++ b/cxx/CMakeLists.txt @@ -1,7 +1,8 @@ find_package(Boost REQUIRED) add_library(libaesxx INTERFACE) -target_include_directories(libaesxx INTERFACE include/ ${Boost_INCLUDE_DIRS}) +target_include_directories(libaesxx INTERFACE include/) +target_include_directories(libaesxx SYSTEM INTERFACE ${Boost_INCLUDE_DIRS}) target_link_libraries(libaesxx INTERFACE libaes) if(CMAKE_COMPILER_IS_GNUCC OR CMAKE_COMPILER_IS_GNUCXX) |