diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2015-06-25 01:18:24 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2015-06-25 01:18:24 +0300 |
commit | f752dfe56b67f2729df0c54c83612ba36f8133bc (patch) | |
tree | 9d392157a1d9ae0d112260c5dedc7ec535d38291 /utils/file/CMakeLists.txt | |
parent | cxx: implement more stuff (diff) | |
download | aes-tools-f752dfe56b67f2729df0c54c83612ba36f8133bc.tar.gz aes-tools-f752dfe56b67f2729df0c54c83612ba36f8133bc.zip |
remove specialized buffer encryption functions
Diffstat (limited to 'utils/file/CMakeLists.txt')
-rw-r--r-- | utils/file/CMakeLists.txt | 27 |
1 files changed, 19 insertions, 8 deletions
diff --git a/utils/file/CMakeLists.txt b/utils/file/CMakeLists.txt index ad949f7..75895a0 100644 --- a/utils/file/CMakeLists.txt +++ b/utils/file/CMakeLists.txt @@ -1,10 +1,21 @@ -macro(util prefix) - add_executable(util_${prefix} ${prefix}.cpp) - target_link_libraries(util_${prefix} libaesnixx libaesni) - set_target_properties(util_${prefix} PROPERTIES OUTPUT_NAME ${prefix}) -endmacro() +find_package(Boost REQUIRED COMPONENTS program_options) -util(aes128ecb_encrypt_file) -util(aes128ecb_decrypt_file) +add_executable(util_aes_encrypt_file aes_encrypt_file.cpp aes_common.hpp) +target_include_directories(util_aes_encrypt_file PRIVATE ${Boost_INCLUDE_DIRS}) +target_link_libraries(util_aes_encrypt_file libaesni libaesnixx ${Boost_LIBRARIES}) +set_target_properties(util_aes_encrypt_file PROPERTIES OUTPUT_NAME aes_encrypt_file) -add_subdirectory(cxx) +add_executable(util_aes_decrypt_file aes_decrypt_file.cpp aes_common.hpp) +target_include_directories(util_aes_decrypt_file PRIVATE ${Boost_INCLUDE_DIRS}) +target_link_libraries(util_aes_decrypt_file libaesni libaesnixx ${Boost_LIBRARIES}) +set_target_properties(util_aes_decrypt_file PROPERTIES OUTPUT_NAME aes_decrypt_file) + +add_executable(util_aes_encrypt_bmp aes_encrypt_bmp.cpp aes_common.hpp) +target_include_directories(util_aes_encrypt_bmp PRIVATE ${Boost_INCLUDE_DIRS}) +target_link_libraries(util_aes_encrypt_bmp libaesni libaesnixx ${Boost_LIBRARIES}) +set_target_properties(util_aes_encrypt_bmp PROPERTIES OUTPUT_NAME aes_encrypt_bmp) + +add_executable(util_aes_decrypt_bmp aes_decrypt_bmp.cpp aes_common.hpp) +target_include_directories(util_aes_decrypt_bmp PRIVATE ${Boost_INCLUDE_DIRS}) +target_link_libraries(util_aes_decrypt_bmp libaesni libaesnixx ${Boost_LIBRARIES}) +set_target_properties(util_aes_decrypt_bmp PROPERTIES OUTPUT_NAME aes_decrypt_bmp) |