diff --git a/appveyor.tml b/appveyor.tml new file mode 100644 index 0000000..ed5a531 --- /dev/null +++ b/appveyor.tml @@ -0,0 +1,18 @@ +image: Visual Studio 2017 +configuration: Release + +before_build: +- cmd: |- + cd %APPVEYOR_BUILD_FOLDER% + mkdir cmake_build + cd cmake_build + cmake --version + +build_script: cmake c:\projects\ctf + +artifacts: + - path: cmake_build\Release\**\*.* + - path: cmake_build\Release\*.* + - path: cmake_build\**\*.exe + - path: cmake_build\**\*.lib +