build: appveyor: use v140_xp toolset for xp compatibility

This commit is contained in:
Eric Wasylishen 2016-06-19 14:38:52 -06:00
parent 6bb6cf5717
commit e3ff06318d
1 changed files with 2 additions and 2 deletions

View File

@ -12,9 +12,9 @@ build_script:
cd cmakebuild
If ($env:Platform -Match "x64") {
cmake .. -DCMAKE_GENERATOR_PLATFORM=x64
cmake .. -T v140_xp -DCMAKE_GENERATOR_PLATFORM=x64
} Else {
cmake ..
cmake .. -T v140_xp
}
msbuild PACKAGE.vcxproj /p:Configuration=Release /logger:"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll"