From 015d396566e91a80a5984794d5f2d623cf2ffb5b Mon Sep 17 00:00:00 2001 From: Joerg-Christian Boehme Date: Thu, 18 Jul 2019 07:59:08 +0200 Subject: [PATCH] Switch off mysql build in AppVeyor cmake build The current MySQL installation on AppVeyor is not build with Visual Studio 15 2017. error LNK2038: mismatch detected for '_MSC_VER': value '1800' doesn't match value '1900' --- appveyor.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appveyor.yml b/appveyor.yml index fcc5ed41b..ba066a02a 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -419,7 +419,7 @@ build_script: $defs+=" -DPOCO_ENABLE_PDF=OFF"; $defs+=" -DPOCO_ENABLE_NETSSL=ON"; $defs+=" -DPOCO_ENABLE_NETSSL_WIN=ON"; - $defs+=" -DPOCO_ENABLE_SQL_MYSQL=ON"; + $defs+=" -DPOCO_ENABLE_SQL_MYSQL=OFF"; $defs+=" -DPOCO_ENABLE_REDIS=OFF"; $defs+=" -DPOCO_ENABLE_SAMPLES=ON"; $defs+=" -DPOCO_ENABLE_TESTS=ON";