diff options
| author | Egor Yusov <egor.yusov@gmail.com> | 2017-12-17 07:41:07 +0000 |
|---|---|---|
| committer | Egor Yusov <egor.yusov@gmail.com> | 2017-12-17 07:41:07 +0000 |
| commit | c6e232ff87da9ea0dc75b79b2eafeb6348a8fe80 (patch) | |
| tree | 1d5d9567e7358b7319d8e6a764987543c598ae63 | |
| parent | Updated appveyor script: added UWP and Debug config build (diff) | |
| download | DiligentEngine-c6e232ff87da9ea0dc75b79b2eafeb6348a8fe80.tar.gz DiligentEngine-c6e232ff87da9ea0dc75b79b2eafeb6348a8fe80.zip | |
Updated appveyor.yml
| -rw-r--r-- | appveyor.yml | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/appveyor.yml b/appveyor.yml index 67c82e2..e4479df 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -12,7 +12,7 @@ image: configuration: - Release -#- Debug +- Debug platform: - x64 @@ -20,11 +20,13 @@ platform: environment: matrix: - - CMAKE_CMD: -H. -B./cmk_build/Win64 -G "Visual Studio 15 2017 Win64" - SLN_FOLDER: c:\projects\diligentengine\cmk_build\Win64 + - generator: "Visual Studio 15 2017 Win64" + CMAKE_ARGUMENTS: + SLN_FOLDER: cmk_build\Win64 - - CMAKE_CMD: cmake -D CMAKE_SYSTEM_NAME=WindowsStore -D CMAKE_SYSTEM_VERSION=10.0 -H. -B./cmk_build/UWP64 -G "Visual Studio 15 2017 Win64" - SLN_FOLDER: c:\projects\diligentengine\cmk_build\UWP64 + - generator: "Visual Studio 15 2017 Win64" + CMAKE_ARGUMENTS: -D CMAKE_SYSTEM_NAME=WindowsStore -D CMAKE_SYSTEM_VERSION=10.0 + SLN_FOLDER: cmk_build\UWP64 # clone directory clone_folder: c:\projects\diligentengine @@ -43,9 +45,9 @@ install: before_build: - cd c:\projects\diligentengine - - cmake %CMAKE_CMD% + - cmake %CMAKE_ARGUMENTS% -H. -B%SLN_FOLDER% -G %generator% build: - project: %SLN_FOLDER%\DiligentEngine.sln + project: c:\projects\diligentengine\%SLN_FOLDER%\DiligentEngine.sln verbosity: normal parallel: true |
