Skip to content

Commit

Permalink
- added Debug x64 target to AppVeyor configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
alexey-lysiuk committed Jun 21, 2019
1 parent 860edd4 commit 8ad9aaf
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .appveyor.yml
Expand Up @@ -12,16 +12,20 @@ image:
environment:
matrix:
- ARCH: x64
CONFIG: Release
- ARCH: Win32
CONFIG: Release
- ARCH: x64
CONFIG: Debug

build_script:
- md build
- cd build
- cmake -A %ARCH% -DPK3_QUIET_ZIPDIR=YES ..
- cmake --build . --config Release -- -maxcpucount -verbosity:minimal
- cmake --build . --config %CONFIG% -- -maxcpucount -verbosity:minimal

after_build:
- set OUTPUT_DIR=%APPVEYOR_BUILD_FOLDER%\build\Release\
- set OUTPUT_DIR=%APPVEYOR_BUILD_FOLDER%\build\%CONFIG%\
- 7z a ..\gzdoom.zip "%OUTPUT_DIR%gzdoom.exe" "%OUTPUT_DIR%*.pk3"

artifacts:
Expand Down

0 comments on commit 8ad9aaf

Please sign in to comment.