Copy the missing criterion.dll into the samples & test build directories

This commit is contained in:
Snaipe 2015-09-06 02:42:38 +02:00
parent c0c80d5888
commit d65b1c951d

View file

@ -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: |