From d65b1c951dad786e033251db77275f44bd1471b7 Mon Sep 17 00:00:00 2001 From: Snaipe Date: Sun, 6 Sep 2015 02:42:38 +0200 Subject: [PATCH] Copy the missing criterion.dll into the samples & test build directories --- appveyor.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/appveyor.yml b/appveyor.yml index 3553559..d4e5274 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -53,6 +53,12 @@ install: build_script: - cmake --build . --target %BUILD_TARGET% + - ps: | + # HACK: We need to copy criterion.dll into the binary directory + if ($env:Compiler -eq "msvc") { + Copy-Item Debug/criterion.dll samples/Debug/ + Copy-Item Debug/criterion.dll test/Debug/ + } before_deploy: - ps: |