diff --git a/CI/before_install.osx.sh b/CI/before_install.osx.sh index 6871787e22..ba269ae0e0 100755 --- a/CI/before_install.osx.sh +++ b/CI/before_install.osx.sh @@ -16,7 +16,6 @@ command -v qmake >/dev/null 2>&1 || brew install qt@5 brew install icu4c brew install yaml-cpp export PATH="/usr/local/opt/qt@5/bin:$PATH" # needed to use qmake in none default path as qt now points to qt6 -export PKG_CONFIG_PATH="/usr/local/opt/icu4c/lib/pkgconfig" ccache --version cmake --version diff --git a/CI/before_script.osx.sh b/CI/before_script.osx.sh index 8b2c9c6f01..c4bb1d1a64 100755 --- a/CI/before_script.osx.sh +++ b/CI/before_script.osx.sh @@ -26,5 +26,6 @@ cmake \ -D BUILD_BSATOOL=TRUE \ -D BUILD_ESSIMPORTER=TRUE \ -D BUILD_NIFTEST=TRUE \ +-D ICU_ROOT="/usr/local/opt/icu4c" -G"Unix Makefiles" \ ..