From c162067e7407655040128b510481c01a762ac7d3 Mon Sep 17 00:00:00 2001 From: Egor Tensin Date: Fri, 19 Jun 2015 18:12:39 +0300 Subject: rename executables --- test/CMakeLists.txt | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'test/CMakeLists.txt') 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) -- cgit v1.2.3