From 9db30c0850771e2fd8f2ff18eab032c5860bd169 Mon Sep 17 00:00:00 2001 From: jmcarcell Date: Mon, 13 Jan 2025 05:57:06 +0100 Subject: [PATCH] macos-build Include GNUInstallDirs to set CMAKE_INSTALL_LIBDIR for MacOS builds --- CMakeLists.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index ddffadf..29a9992 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -14,6 +14,8 @@ SET( ${PROJECT_NAME}_VERSION_MAJOR 1 ) SET( ${PROJECT_NAME}_VERSION_MINOR 9 ) SET( ${PROJECT_NAME}_VERSION_PATCH 3 ) +include(GNUInstallDirs) + cmake_policy(SET CMP0008 NEW) ### DEPENDENCIES ############################################################