diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2015-06-19 18:12:39 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2015-06-19 18:12:39 +0300 |
commit | c162067e7407655040128b510481c01a762ac7d3 (patch) | |
tree | f105b0204b1926f2c8d13acf22c0f1f1ba5cb0c8 /test/CMakeLists.txt | |
parent | test: restore specialized block encryption utils (diff) | |
download | aes-tools-c162067e7407655040128b510481c01a762ac7d3.tar.gz aes-tools-c162067e7407655040128b510481c01a762ac7d3.zip |
rename executables
Diffstat (limited to '')
-rw-r--r-- | test/CMakeLists.txt | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index 0ee556f..2d58160 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -26,12 +26,12 @@ test(aes256ctr) find_package(Boost REQUIRED COMPONENTS program_options) -add_executable(test_encrypt_block_aes encrypt_block_aes.cpp common_aes.hpp) -target_include_directories(test_encrypt_block_aes PRIVATE ${Boost_INCLUDE_DIRS}) -target_link_libraries(test_encrypt_block_aes libaesni libaesnixx ${Boost_LIBRARIES}) -set_target_properties(test_encrypt_block_aes PROPERTIES OUTPUT_NAME encrypt_block_aes) +add_executable(test_aes_encrypt_block aes_encrypt_block.cpp aes_common.hpp) +target_include_directories(test_aes_encrypt_block PRIVATE ${Boost_INCLUDE_DIRS}) +target_link_libraries(test_aes_encrypt_block libaesni libaesnixx ${Boost_LIBRARIES}) +set_target_properties(test_aes_encrypt_block PROPERTIES OUTPUT_NAME aes_encrypt_block) -add_executable(test_decrypt_block_aes decrypt_block_aes.cpp common_aes.hpp) -target_include_directories(test_decrypt_block_aes PRIVATE ${Boost_INCLUDE_DIRS}) -target_link_libraries(test_decrypt_block_aes libaesni libaesnixx ${Boost_LIBRARIES}) -set_target_properties(test_decrypt_block_aes PROPERTIES OUTPUT_NAME decrypt_block_aes) +add_executable(test_aes_decrypt_block aes_decrypt_block.cpp aes_common.hpp) +target_include_directories(test_aes_decrypt_block PRIVATE ${Boost_INCLUDE_DIRS}) +target_link_libraries(test_aes_decrypt_block libaesni libaesnixx ${Boost_LIBRARIES}) +set_target_properties(test_aes_decrypt_block PROPERTIES OUTPUT_NAME aes_decrypt_block) |