aboutsummaryrefslogblamecommitdiffstatshomepage
path: root/aesxx/CMakeLists.txt
blob: 7f5a58aa38b77b1ebe173dec06bce29f676ebb1d (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11

                            

                                                    
                                                       





                                                                                              

                                                    

                       
find_package(Boost REQUIRED)

add_library(aesxx INTERFACE)
target_include_directories(aesxx INTERFACE include/)
target_link_libraries(aesxx INTERFACE aes Boost::boost)

if(MSVC_VERSION EQUAL 1900)
    # These annoying DbgHelp.h warnings:
    # https://connect.microsoft.com/VisualStudio/feedback/details/888527/warnings-on-dbghelp-h
    target_compile_options(aesxx INTERFACE /wd4091)
endif()

install(DIRECTORY include/aesxx DESTINATION include)

add_subdirectory(utils)