From d801e9ba62a2efae4791492061f7dc29d778d503 Mon Sep 17 00:00:00 2001 From: Phil Tooley Date: Wed, 13 Feb 2019 22:16:40 +0000 Subject: [PATCH] add mysteriously missing cmake install directive --- src/CMakeLists.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 01bda12..537719d 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -35,3 +35,5 @@ target_link_libraries(libpfire ${EXTRA_LIBS}) add_executable(pfire pfire.cpp) set_target_properties(pfire PROPERTIES LINKER_LANGUAGE CXX) target_link_libraries(pfire libpfire) + +install(TARGETS pfire DESTINATION bin)