Use correct path for the test on AppVeyor CI in debug builds
Don't hardcode the path for DLL release configurations.
This commit is contained in:
parent
ae13c2592e
commit
f1f612ea1a
1 changed files with 5 additions and 2 deletions
|
|
@ -8,9 +8,12 @@ goto %TOOLSET%
|
||||||
|
|
||||||
:msbuild
|
:msbuild
|
||||||
PATH=C:\projects\wxwidgets\lib\vc_x64_dll;%PATH%
|
PATH=C:\projects\wxwidgets\lib\vc_x64_dll;%PATH%
|
||||||
.\vc_x64_mswudll\test.exe
|
if "%CONFIGURATION%"=="DLL Release" set suffix=dll
|
||||||
|
if "%CONFIGURATION%"=="DLL Debug" set suffix=ddll
|
||||||
|
if "%CONFIGURATION%"=="Debug" set suffix=d
|
||||||
|
.\vc_x64_mswu%suffix%\test.exe
|
||||||
if %errorlevel% NEQ 0 goto :error
|
if %errorlevel% NEQ 0 goto :error
|
||||||
.\vc_x64_mswudll\test_gui.exe
|
.\vc_x64_mswu%suffix%\test_gui.exe
|
||||||
goto :eof
|
goto :eof
|
||||||
|
|
||||||
:nmake
|
:nmake
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue