diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2021-03-24 20:34:15 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2021-03-24 20:42:25 +0300 |
commit | 9e5c0c3b91f7903c7cb97368d90a9171ea63d52c (patch) | |
tree | dfbb8bd419af66dc35feef9c7ceda441ef3a09e5 /CMakeLists.txt | |
parent | Boost::disable_autolinking is mandatory (diff) | |
download | aes-tools-9e5c0c3b91f7903c7cb97368d90a9171ea63d52c.tar.gz aes-tools-9e5c0c3b91f7903c7cb97368d90a9171ea63d52c.zip |
add CTest tests
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 232aeb7..5553e60 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -2,9 +2,13 @@ cmake_minimum_required(VERSION 3.5) # for Boost::* imported targets project(aes_tools C CXX) +enable_testing() + include(cmake/common.cmake) add_subdirectory(aes) add_subdirectory(aesxx) +add_subdirectory(test) + install(FILES LICENSE.txt DESTINATION share) |