From ce151f57c510b83d7664706a2479f9a0d9aefd08 Mon Sep 17 00:00:00 2001 From: Naseer Ahmed Date: Wed, 15 Oct 2025 12:06:23 -0400 Subject: [PATCH] Build for mac OS 15.0 --- CMakeLists.txt | 2 +- README.md | 7 +++---- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 5453bba..152a540 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -24,7 +24,7 @@ include(GNUInstallDirs) if (APPLE) - set(CMAKE_OSX_DEPLOYMENT_TARGET 10.9) + set(CMAKE_OSX_DEPLOYMENT_TARGET 15.0) set(CMAKE_SKIP_BUILD_RPATH FALSE) set(CMAKE_BUILD_WITH_INSTALL_RPATH FALSE) set(CMAKE_INSTALL_RPATH "${CMAKE_INSTALL_PREFIX}/lib") diff --git a/README.md b/README.md index 80debc9..dabd12e 100644 --- a/README.md +++ b/README.md @@ -120,11 +120,10 @@ Qt installation folder. macOS ----- -You can install Qt from the official website and get a recent OpenEXR -release from homebrew. +You can install Qt and OpenEXR from homebrew. ```bash -brew install openexr +brew install openexr qt ``` Then, you need to specify the of Qt's install when running CMake. For example: @@ -132,7 +131,7 @@ Then, you need to specify the of Qt's install when running CMake. For example: ```bash mkdir build cd build -cmake .. -DCMAKE_PREFIX_PATH=~/Qt/6.1.0/clang64 +cmake .. -DCMAKE_PREFIX_PATH=/opt/homebrew/Cellar/qt/6.9.3/ ``` Then, you can build the package: