From 3c3133eff111ae6a25a4c6f34aac6b8ad111cba2 Mon Sep 17 00:00:00 2001 From: Ayoub Zaki Date: Thu, 30 Jan 2025 17:31:12 +0100 Subject: [PATCH] cmake: add installation of bmap-writer-stream.sh --- CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 16c69e0..787fc69 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -51,6 +51,7 @@ target_link_libraries(bmap-writer ${TINYXML2_LIBRARIES} ${LibArchive_LIBRARIES}) # Specify the install rules install(TARGETS bmap-writer DESTINATION bin) +install(PROGRAMS bmap-writer-stream.sh DESTINATION bin RENAME bmap-writer-stream) # Enable testing enable_testing()