1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-01-30 18:45:38 +00:00

Set ICU_ROOT instead of PKG_CONFIG_PATH to find ICU on macos

This commit is contained in:
Benjamin Winger 2022-04-10 15:26:25 -04:00
parent 8bd16179a6
commit 2c5a4e6416
No known key found for this signature in database
GPG key ID: 22E22BE7466677FC
2 changed files with 1 additions and 1 deletions

View file

@ -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

View file

@ -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" \
..