From dd62faf308cc75935a17d318e80951a10b9f8794 Mon Sep 17 00:00:00 2001 From: Pierre Aubert <aubertp7@gmail.com> Date: Wed, 21 Apr 2021 08:20:55 +0200 Subject: [PATCH] Add RUNTIME executable --- src/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 7cf6b39..a3ea38e 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -11,5 +11,5 @@ include_directories(${HDF5_INCLUDE_DIRS}) add_executable(phoenix_binary_analyzer PDataCol.cpp main.cpp) target_link_libraries(phoenix_binary_analyzer phoenix_binary_analyzer_lib option_parser string_utils ${HDF5_CXX_LIBRARIES}) -install(TARGETS phoenix_binary_analyzer DESTINATION bin) +install(TARGETS phoenix_binary_analyzer RUNTIME DESTINATION bin) -- GitLab