From 2531c44a525d251377bcf49d61491fde6ea4e5db Mon Sep 17 00:00:00 2001 From: Benson Muite Date: Sat, 15 Mar 2025 14:07:05 +0300 Subject: [PATCH] Add executable install option for CMake --- CMakeLists.txt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6977559..c2e979a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -4,3 +4,6 @@ project(digdoc C) add_executable(digdoc main.c) target_link_libraries(digdoc PRIVATE coap-3 ldns) + +install(TARGETS + digdoc)