From e11dc2996ab976275ac678c2686db2afcf480137 Mon Sep 17 00:00:00 2001 From: EYRAUD-DUBOIS Lionel Date: Tue, 18 Aug 2020 16:00:23 +0200 Subject: [PATCH] Add a CMake rule to install the executable --- CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index bb55e9b..804753d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -65,5 +65,6 @@ if(THREADS_FOUND) target_link_libraries(pmtool Threads::Threads) endif() +install(TARGETS pmtool RUNTIME DESTINATION bin/) add_executable(instanceinfo instanceinfo.cpp) target_link_libraries(instanceinfo core) -- GitLab