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'
This commit is contained in:
Joerg-Christian Boehme
2019-07-18 07:59:08 +02:00
parent efd1d5a255
commit 015d396566

View File

@@ -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";