1
0
mirror of https://github.com/catchorg/Catch2.git synced 2025-04-27 11:25:43 +02:00

Build ExtraTests when building Examples on AppVeyor

This commit is contained in:
Martin Hořeňovský 2018-08-31 11:46:31 +02:00
parent 0947752a44
commit 38e1731f69

@ -15,7 +15,7 @@ if "%CONFIGURATION%"=="Debug" (
if "%examples%"=="1" (
@REM # Examples live off the single header, so it needs to be regenerated
python scripts\generateSingleHeader.py
cmake -H. -BBuild -A%PLATFORM% -DUSE_WMAIN=%wmain% -DCATCH_BUILD_EXAMPLES=ON
cmake -H. -BBuild -A%PLATFORM% -DUSE_WMAIN=%wmain% -DCATCH_BUILD_EXAMPLES=ON -DCATCH_BUILD_EXTRA_TESTS=ON
) else (
@REM # This is just a plain debug build
cmake -H. -BBuild -A%PLATFORM% -DUSE_WMAIN=%wmain%