From 225ef13cc7f58b69ef4c4db6308a225c726359f7 Mon Sep 17 00:00:00 2001 From: Egor Tensin Date: Wed, 24 Jun 2015 05:59:11 +0300 Subject: move executables from test/ to utils/ --- utils/file/CMakeLists.txt | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 utils/file/CMakeLists.txt (limited to 'utils/file/CMakeLists.txt') diff --git a/utils/file/CMakeLists.txt b/utils/file/CMakeLists.txt new file mode 100644 index 0000000..ad949f7 --- /dev/null +++ b/utils/file/CMakeLists.txt @@ -0,0 +1,10 @@ +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() + +util(aes128ecb_encrypt_file) +util(aes128ecb_decrypt_file) + +add_subdirectory(cxx) -- cgit v1.2.3