summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEgor Yusov <egor.yusov@gmail.com>2019-07-24 00:41:20 +0000
committerEgor Yusov <egor.yusov@gmail.com>2019-07-24 00:41:20 +0000
commit7242089a9a8e84eaabdee47a3cd20f4dee4deeb2 (patch)
tree318dd234531f52853a5b121420d99e2d64531549
parentAttempting to fix Appveyor build failure due to out-of-date Python version (diff)
downloadDiligentCore-7242089a9a8e84eaabdee47a3cd20f4dee4deeb2.tar.gz
DiligentCore-7242089a9a8e84eaabdee47a3cd20f4dee4deeb2.zip
Fixed pytnon path in appveyor script
-rw-r--r--appveyor.yml14
1 files changed, 7 insertions, 7 deletions
diff --git a/appveyor.yml b/appveyor.yml
index 5f2ca60b..6dc1e599 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -17,49 +17,49 @@ environment:
configuration: Debug
cmake_args: -D CMAKE_INSTALL_PREFIX=install
platform_name: Windows
- python: "C:\Python37-64"
+ python: "C:\\Python37-64"
# Win32/x64/Release
- platform: x64
configuration: Release
cmake_args: -D CMAKE_INSTALL_PREFIX=install
platform_name: Windows
- python: "C:\Python37-64"
+ python: "C:\\Python37-64"
# UWP/x64/Debug
- platform: x64
configuration: Debug
cmake_args: -D CMAKE_INSTALL_PREFIX=install -D CMAKE_SYSTEM_NAME=WindowsStore -D CMAKE_SYSTEM_VERSION=10.0
platform_name: UWP
- python: "C:\Python37-64"
+ python: "C:\\Python37-64"
# UWP/x64/Release
- platform: x64
configuration: Release
cmake_args: -D CMAKE_INSTALL_PREFIX=install -D CMAKE_SYSTEM_NAME=WindowsStore -D CMAKE_SYSTEM_VERSION=10.0
platform_name: UWP
- python: "C:\Python37-64"
+ python: "C:\\Python37-64"
# Win32/x86/Release
- platform: Win32
configuration: Release
cmake_args: -D CMAKE_INSTALL_PREFIX=install
platform_name: Windows
- python: "C:\Python37"
+ python: "C:\\Python37"
# UWP/x86/Release
- platform: Win32
configuration: Release
cmake_args: -D CMAKE_INSTALL_PREFIX=install -D CMAKE_SYSTEM_NAME=WindowsStore -D CMAKE_SYSTEM_VERSION=10.0
platform_name: UWP
- python: "C:\Python37"
+ python: "C:\\Python37"
# Win32-8.1SDK/x64/Release
- platform: x64
configuration: Release
cmake_args: -D CMAKE_INSTALL_PREFIX=install -D CMAKE_SYSTEM_VERSION=8.1
platform_name: Windows8.1
- python: "C:\Python37-64"
+ python: "C:\\Python37-64"
# clone directory
clone_folder: c:\projects\DiligentCore