Skip to content

Commit

Permalink
azure-pipelines: fix building neovim on macOS/Qt5
Browse files Browse the repository at this point in the history
The qt@5 package is keg-only these days and not linked into the cmake
search path by default. Set Qt5_DIR so that cmake knows how to find Qt5.
  • Loading branch information
davvid committed Mar 21, 2024
1 parent ef1bec6 commit 7292fd0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions contrib/azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,12 +45,12 @@ jobs:
pool:
vmImage: 'macOS-latest'
steps:
- script: brew install msgpack neovim ninja qt5
- script: brew install msgpack neovim ninja qt@5
displayName: Install Dependencies
- task: CMake@1
inputs:
workingDirectory: $(Build.BinariesDirectory)
cmakeArgs: -GNinja -DUSE_SYSTEM_MSGPACK=OFF -DCMAKE_BUILD_TYPE=Debug $(Build.SourcesDirectory)
cmakeArgs: -GNinja -DUSE_SYSTEM_MSGPACK=OFF -DCMAKE_BUILD_TYPE=Debug -DQt5_DIR=/usr/local/opt/qt@5 $(Build.SourcesDirectory)
displayName: CMake Configure
- task: CMake@1
inputs:
Expand Down

0 comments on commit 7292fd0

Please sign in to comment.