From 3b471e9bef5c486df2f5a3e2d220f5b76d0ba705 Mon Sep 17 00:00:00 2001 From: Kai Pastor Date: Tue, 31 Dec 2024 19:18:12 +0100 Subject: [PATCH] Install tools and tests to 'bin' (#259) --- test/CMakeLists.txt | 2 +- tool/CMakeLists.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index ea7a7a8b..639f4eba 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -4,4 +4,4 @@ set(SOURCES msh3test.cpp) add_executable(msh3test ${SOURCES}) target_link_libraries(msh3test msh3 msh3_headers) -install(TARGETS msh3test EXPORT msh3 DESTINATION lib) +install(TARGETS msh3test EXPORT msh3 RUNTIME DESTINATION bin) diff --git a/tool/CMakeLists.txt b/tool/CMakeLists.txt index 15921073..92313615 100644 --- a/tool/CMakeLists.txt +++ b/tool/CMakeLists.txt @@ -4,4 +4,4 @@ set(SOURCES msh3_app.cpp) add_executable(msh3app ${SOURCES}) target_link_libraries(msh3app msh3 msh3_headers) -install(TARGETS msh3app EXPORT msh3 DESTINATION lib) +install(TARGETS msh3app EXPORT msh3 RUNTIME DESTINATION bin)