aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2019-12-10 15:27:08 +0300
committerEgor Tensin <Egor.Tensin@gmail.com>2019-12-10 15:27:08 +0300
commitab09d6a2e0218014c2fe3c76f97226ee63495ea7 (patch)
tree5641809a939f441cd6d250ee1927bb920c57fab5
parentAppVeyor: Release builds only on master (diff)
downloadaes-tools-ab09d6a2e0218014c2fe3c76f97226ee63495ea7.tar.gz
aes-tools-ab09d6a2e0218014c2fe3c76f97226ee63495ea7.zip
utils: add install rules
-rw-r--r--utils/CMakeLists.txt5
1 files changed, 5 insertions, 0 deletions
diff --git a/utils/CMakeLists.txt b/utils/CMakeLists.txt
index b141e62..50a682a 100644
--- a/utils/CMakeLists.txt
+++ b/utils/CMakeLists.txt
@@ -35,3 +35,8 @@ add_executable(util_decrypt_bmp decrypt_bmp.cpp ${bmp_util_headers})
target_include_directories(util_decrypt_bmp SYSTEM PRIVATE ${Boost_INCLUDE_DIRS})
target_link_libraries(util_decrypt_bmp PRIVATE aesxx ${Boost_LIBRARIES})
set_target_properties(util_decrypt_bmp PROPERTIES OUTPUT_NAME decrypt_bmp)
+
+install(TARGETS
+ util_encrypt_block util_encrypt_file util_encrypt_bmp
+ util_decrypt_block util_decrypt_file util_decrypt_bmp
+ RUNTIME DESTINATION bin)