diff --git a/dht-server/CMakeLists.txt b/dht-server/CMakeLists.txt index af67a4328..a9866921e 100644 --- a/dht-server/CMakeLists.txt +++ b/dht-server/CMakeLists.txt @@ -12,3 +12,5 @@ set (DHT_SERVER_SOURCE add_executable (dht-server ${DHT_SERVER_SOURCE}) target_link_libraries(dht-server tdutils tdactor adnl tl_api dht memprof ${JEMALLOC_LIBRARIES}) + +install(TARGETS dht-server RUNTIME DESTINATION bin) diff --git a/lite-client/CMakeLists.txt b/lite-client/CMakeLists.txt index a1afd5292..78bd96b5c 100644 --- a/lite-client/CMakeLists.txt +++ b/lite-client/CMakeLists.txt @@ -6,3 +6,5 @@ target_link_libraries(lite-client-common PUBLIC tdutils tdactor adnllite tl_api add_executable(lite-client lite-client.cpp lite-client.h) target_link_libraries(lite-client tdutils tdactor adnllite tl_api tl_lite_api tl-lite-utils ton_crypto ton_block terminal lite-client-common) + +install(TARGETS lite-client RUNTIME DESTINATION bin) diff --git a/utils/CMakeLists.txt b/utils/CMakeLists.txt index 32422b3ee..8f2211a64 100644 --- a/utils/CMakeLists.txt +++ b/utils/CMakeLists.txt @@ -19,3 +19,5 @@ add_executable(pack-viewer pack-viewer.cpp ) target_link_libraries(pack-viewer tl_api ton_crypto keys validator tddb ) target_include_directories(pack-viewer PUBLIC $/..) + +install(TARGETS generate-random-id RUNTIME DESTINATION bin)