Warning, /rolisteam/rolisteam/appveyor.yml is written in an unsupported language. File is not indexed.
0001 image: 0002 - Visual Studio 2019 0003 clone_folder: c:\projects\source 0004 0005 environment: 0006 Qt5_INSTALL_DIR: 'C:\Qt\5.15.0\msvc2019_64' 0007 PATH: '%Qt5_INSTALL_DIR%\bin;%PATH%' 0008 0009 build_script: 0010 - cmd: >- 0011 0012 mkdir build 0013 0014 cd build 0015 0016 echo %PATH% 0017 0018 cmake c:\projects\source -G "Visual Studio 16 2019" -DCMAKE_BUILD_TYPE:STRING=Release 0019 0020 cmake --build . --parallel 2 --config "Release" 0021 0022 cpack -G WIX -B package 0023 0024 mkdir artifact 0025 0026 dir 0027 0028 cp package/*.msi artifact/. 0029 0030 cp src/Release/*.exe artifact/. 0031 0032 7z a -tzip artifact.zip artifact/ 0033 0034 artifacts: 0035 - path: build\package\*.msi 0036 name: installer 0037 - path: build\src\Release\*.exe 0038 name: executable 0039 - path: build\artifact.zip 0040 name: archive