From 66a8f67a2d777b8e875a5538c708f5901630a46f Mon Sep 17 00:00:00 2001 From: Luca Weiss Date: Sat, 9 Mar 2024 19:10:36 +0100 Subject: [PATCH] foo --- .appveyor.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.appveyor.yml b/.appveyor.yml index bb2f5c5..42c8009 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -16,6 +16,9 @@ install: - ps: (new-object net.webclient).DownloadFile('https://github.com/mesonbuild/cidata/raw/master/ninja.exe', 'C:\ninja-build\ninja.exe') # Set paths to dependencies (based on architecture) - cmd: if %arch%==x86 (set PYTHON_ROOT=C:\python312) else (set PYTHON_ROOT=C:\python312-x64) + - cmd: dir C:\Qt\5.15 + - cmd: dir C:\Program Files\Microsoft Visual Studio + - cmd: dir C:\Program Files (x86)\Microsoft Visual Studio - cmd: if %arch%==x86 (set QT_ROOT=C:\Qt\5.15\%compiler%) else (set QT_ROOT=C:\Qt\5.15\%compiler%_64) # Print out dependency paths - cmd: echo Using Python at %PYTHON_ROOT% @@ -25,7 +28,7 @@ install: # Install meson - cmd: pip install meson # Set up the build environment - - cmd: if %compiler%==msvc2019 ( call "C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Auxiliary\Build\vcvarsall.bat" %arch% ) + - cmd: if %compiler%==msvc2019 ( call "C:\Program Files\Microsoft Visual Studio\2022\Community\VC\Auxiliary\Build\vcvarsall.bat" %arch% ) build_script: - cmd: echo Building on %arch% with %compiler%