From d6af6b492e27bd5d9b55e5f5bf43679dbf6b3145 Mon Sep 17 00:00:00 2001 From: Russel Waters Date: Tue, 29 Sep 2020 13:52:35 -0700 Subject: [PATCH] correct lib install path for nix (#2990) --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index fa7b41b7..e763c251 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -637,7 +637,7 @@ if (NANO_GUI OR RAIBLOCKS_GUI) string(REGEX MATCH "(.+/.*boost_[^-]+)" boost_lib_name ${boost_lib}) set (boost_dll "${CMAKE_MATCH_1}.${Boost_VERSION_STRING}") if (${boost_dll} MATCHES "boost") - install (FILES ${boost_dll} DESTINATION .) + install (FILES ${boost_dll} DESTINATION ./lib) endif() endforeach(boost_lib) endif()