From 7400b9ce8a90c6e333ca86d99457c5936dc7ad15 Mon Sep 17 00:00:00 2001 From: WerWolv Date: Sun, 1 Oct 2023 16:59:04 +0200 Subject: [PATCH] build: Fixed macOS library path --- cmake/build_helpers.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmake/build_helpers.cmake b/cmake/build_helpers.cmake index b731b87ad..cbef0b1e5 100644 --- a/cmake/build_helpers.cmake +++ b/cmake/build_helpers.cmake @@ -132,7 +132,7 @@ macro(configurePackingResources) endif() set(PLUGINS_INSTALL_LOCATION "${IMHEX_BUNDLE_PATH}/Contents/MacOS/plugins") - set(CMAKE_INSTALL_LIBDIR "${IMHEX_BUNDLE_PATH}/Contents/Framework") + set(CMAKE_INSTALL_LIBDIR "${IMHEX_BUNDLE_PATH}/Contents/Frameworks") endif() endif() endmacro()