From 6c6651526b381b329f5adb4cfe46775fd5cc9eb9 Mon Sep 17 00:00:00 2001 From: Fabian Fichter Date: Sun, 5 Apr 2020 15:37:50 +0200 Subject: [PATCH] Exclude pyffish from appveyor C++ build --- appveyor.yml | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index ebf3c87..c0928f5 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -32,7 +32,7 @@ init: before_build: - ps: | # Get sources - $src = get-childitem -Path *.cpp -Recurse | select -ExpandProperty FullName + $src = get-childitem -Path *.cpp -Recurse -Exclude pyffish.cpp | select -ExpandProperty FullName $src = $src -join ' ' $src = $src.Replace("\", "/") -- 1.7.0.4