diff options
author | Nadia Holmquist Pedersen <nadia@nhp.sh> | 2021-04-25 03:13:32 +0200 |
---|---|---|
committer | Nadia Holmquist Pedersen <nadia@nhp.sh> | 2021-04-25 03:13:32 +0200 |
commit | e0cb9985914f832f3c04509b67e1f813477899c7 (patch) | |
tree | 3f7737cf7c23138e6e85c24bc31c3aa7607280cb /azure-pipelines.yml | |
parent | d3d5f4591476b07a00a523ddb86c709acf1f1ffb (diff) |
azure-pipelines: use Qt6 for macOS
Diffstat (limited to 'azure-pipelines.yml')
-rw-r--r-- | azure-pipelines.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/azure-pipelines.yml b/azure-pipelines.yml index ca95b78..e2e14c6 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -5,13 +5,13 @@ pool: vmImage: macOS-10.14 steps: -- script: brew install sdl2 qt@5 libslirp libarchive libepoxy +- script: brew install sdl2 qt@6 libslirp libarchive libepoxy displayName: 'Install dependencies' - script: mkdir $(Pipeline.Workspace)/build displayName: 'Create build environment' -- script: cmake $(Build.SourcesDirectory) -DCMAKE_BUILD_TYPE=$BUILD_TYPE -DCMAKE_PREFIX_PATH="$(brew --prefix qt@5);$(brew --prefix libarchive)" -DMACOS_BUNDLE_LIBS=ON -DMACOS_BUILD_DMG=ON +- script: cmake $(Build.SourcesDirectory) -DCMAKE_BUILD_TYPE=$BUILD_TYPE -DCMAKE_PREFIX_PATH="$(brew --prefix qt@6);$(brew --prefix libarchive)" -DMACOS_BUNDLE_LIBS=ON -DMACOS_BUILD_DMG=ON -DUSE_QT6=ON displayName: 'Configure' workingDirectory: $(Pipeline.Workspace)/build |