From 2af6b58a52ea4fe853330b1b58248c20a43a2141 Mon Sep 17 00:00:00 2001 From: Ewout ter Hoeven Date: Tue, 22 Jan 2019 10:56:54 +0100 Subject: [PATCH] Create appveyor.tml --- appveyor.tml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 appveyor.tml 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 +