Fix macOS brew installed glew issue (#2900)

This commit is contained in:
manongjohn 2019-11-22 21:30:21 -05:00 committed by GitHub
parent ca556f8550
commit d98db10fae
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -5,4 +5,12 @@ brew tap tcr/tcr
brew install clang-format brew install clang-format
# from Homebrew 1.6.0 the old formula for obtaining Qt5.9.2 becomes invalid. # from Homebrew 1.6.0 the old formula for obtaining Qt5.9.2 becomes invalid.
# so we start to use the latest version of Qt. (#1910) # so we start to use the latest version of Qt. (#1910)
brew install qt brew install qt
# temp workaround to brew installed glew cmake info overriding glew lib detection
# which causes compiling issues later
if [ -L /usr/local/lib/cmake/glew ]
then
echo "Symbolic link '/usr/local/lib/cmake/glew' detected. Removing to avoid glew lib detection issue!"
ls -l /usr/local/lib/cmake/glew
rm /usr/local/lib/cmake/glew
fi