Clean /usr/local/include from Qt6.

develop
Roman Telezhynskyi 2023-09-26 17:14:07 +03:00
parent f8f1fef11e
commit a30019e356
1 changed files with 4 additions and 0 deletions

View File

@ -916,6 +916,10 @@ for:
- unzip ${HOME}/macdeployqt-main.zip -d ${HOME}
- cmake ${HOME}/macdeployqt-main -S ${HOME}/macdeployqt-main -B ${HOME}/macdeployqt-build-dir -DCMAKE_INSTALL_PREFIX=${HOME}/macdeployqt-install-dir -DCMAKE_BUILD_TYPE=Release
- cmake --build ${HOME}/macdeployqt-build-dir --target install
# Clean /usr/local/include from Qt6
- find /usr/local/include -type l -name 'Qt*' > /tmp/qt_symlinks.txt
- cat /tmp/qt_symlinks.txt
- xargs -I {} unlink {} < /tmp/qt_symlinks.txt
- cd ${APPVEYOR_BUILD_FOLDER}
build_script: