diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2016-10-16 08:48:40 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2016-10-16 08:48:40 +0300 |
commit | 7a33f6f1eb08b93fc545fa175a76ba2378a974e8 (patch) | |
tree | 32d128dd4978cdb5ac4957ccb2152b8c506ab037 /cxx/CMakeLists.txt | |
parent | test: ignore Pylint "invalid name" warnings (diff) | |
download | aes-tools-7a33f6f1eb08b93fc545fa175a76ba2378a974e8.tar.gz aes-tools-7a33f6f1eb08b93fc545fa175a76ba2378a974e8.zip |
CMakeLists.txt: code style
Diffstat (limited to 'cxx/CMakeLists.txt')
-rw-r--r-- | cxx/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cxx/CMakeLists.txt b/cxx/CMakeLists.txt index df73860..9dddb5c 100644 --- a/cxx/CMakeLists.txt +++ b/cxx/CMakeLists.txt @@ -4,6 +4,6 @@ add_library(libaesxx INTERFACE) target_include_directories(libaesxx INTERFACE include/ ${Boost_INCLUDE_DIRS}) target_link_libraries(libaesxx INTERFACE libaes) -if(CMAKE_COMPILER_IS_GNUCXX) +if(CMAKE_COMPILER_IS_GNUCC OR CMAKE_COMPILER_IS_GNUCXX) target_compile_options(libaesxx INTERFACE -std=c++11) endif() |