From d9f37f0a5c166bd1b533132eec1818ac8e4a9e76 Mon Sep 17 00:00:00 2001 From: Clem Cords Date: Tue, 5 Dec 2023 17:41:00 +0100 Subject: [PATCH] hardcoded to force install prefix as .so output directory --- CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index ea7133a..c725b60 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -138,6 +138,7 @@ set_target_properties(jluna PROPERTIES WINDOWS_EXPORT_ALL_SYMBOLS "YES" # TODO: Why is this necessary? VERSION "${PROJECT_VERSION}" SOVERSION "${PROJECT_VERSION}" + LIBRARY_OUTPUT_DIRECTORY "${CMAKE_INSTALL_PREFIX}" ) ### Install rules ###