Skip to content

Commit

Permalink
Fix setting of debug DLL name for AppVeyor
Browse files Browse the repository at this point in the history
  • Loading branch information
dneto0 committed Mar 1, 2018
1 parent 461cc14 commit 13c6d97
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions .appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,15 +56,14 @@ test_script:

after_test:
- ps: >-
$env:SHADERC_DLL="shaderc_shared.dll"
If ($env:configuration -Match "Debug") {
$env:ZIP_FILENAME="shaderc-tot-windows-x64-debug.zip"
} Else {
$env:ZIP_FILENAME="shaderc-tot-windows-x64-release.zip"
}
- cp libshaderc\%CONFIGURATION%\%SHADERC_DLL% install\lib\
- cp libshaderc\%CONFIGURATION%\shaderc_shared.dll install\lib\
- cd install
- 7z a %ZIP_FILENAME% bin\glslc.exe include\shaderc\* lib\shaderc_combined.lib lib\%SHADERC_DLL%
- 7z a %ZIP_FILENAME% bin\glslc.exe include\shaderc\* lib\shaderc_combined.lib lib\shaderc_shared.dll

artifacts:
- path: build\install\$(ZIP_FILENAME)
Expand Down

0 comments on commit 13c6d97

Please sign in to comment.