aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/cxx/CMakeLists.txt
blob: 97cb9a58f37f37a52402d17e8bbd55cfa4647e5e (plain) (blame)
1
2
3
4
5
6
7
8
9
find_package(Boost REQUIRED)

add_library(libaesxx INTERFACE)
target_include_directories(libaesxx INTERFACE include/ ${Boost_INCLUDE_DIRS})
target_link_libraries(libaesxx INTERFACE libaes)

if(CMAKE_COMPILER_IS_GNUCC)
    target_compile_options(libaesxx INTERFACE -std=c++11)
endif()