From 25fb3b098d201265fba4c08c22553cdac9c6c6c3 Mon Sep 17 00:00:00 2001 From: Derek Slaughter Date: Tue, 16 Jan 2024 19:08:48 +0000 Subject: [PATCH] Fix bug in openfast-cpp CMakeLists.txt runtime install destination The install runtime destination was set to lib, this commit changes it to bin --- glue-codes/openfast-cpp/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glue-codes/openfast-cpp/CMakeLists.txt b/glue-codes/openfast-cpp/CMakeLists.txt index 55823e0465..658d502a01 100644 --- a/glue-codes/openfast-cpp/CMakeLists.txt +++ b/glue-codes/openfast-cpp/CMakeLists.txt @@ -72,7 +72,7 @@ endif(MPI_LINK_FLAGS) install(TARGETS openfastcpp openfastcpplib EXPORT "${CMAKE_PROJECT_NAME}Libraries" - RUNTIME DESTINATION lib + RUNTIME DESTINATION bin ARCHIVE DESTINATION lib LIBRARY DESTINATION lib PUBLIC_HEADER DESTINATION include