From 4559e6d47bb69fda0fbd3fb4b7d04ddb1cf5e2ae Mon Sep 17 00:00:00 2001 From: Nick Cao Date: Sat, 13 May 2023 12:37:27 +0800 Subject: [PATCH] Add install target to CMakeLists.txt --- CMakeLists.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index ba34e55..91f03fe 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -30,3 +30,5 @@ target_link_libraries(udp2raw rt) target_link_libraries(udp2raw pthread) include_directories(SYSTEM "libev") include_directories(".") + +install(TARGETS udp2raw)