Added ubuntu CI and fixed issue uncovered during CI. Also added clang-format

This commit is contained in:
Jeremy Borgman
2020-09-03 19:25:32 -05:00
committed by borgmanJeremy
parent c8d15205be
commit 5dba3de778
5 changed files with 109 additions and 0 deletions

20
appveyor.yml Normal file
View File

@@ -0,0 +1,20 @@
image:
- Visual Studio 2019
clone_folder: c:\projects\source
environment:
Qt5_INSTALL_DIR: 'C:\Qt\5.15.0\msvc2019_64'
PATH: '%Qt5_INSTALL_DIR%\bin;%PATH%'
build_script:
- cmd: >-
mkdir build
cd build
echo %PATH%
cmake c:\projects\source -G "Visual Studio 16 2019" -DCMAKE_BUILD_TYPE:STRING=Release
cmake --build . --config "Release"