diff --git a/appveyor.yml b/appveyor.yml index 1ba8abbd1..e0c7b9b90 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -36,7 +36,7 @@ build_script: mkdir build cd build if ($env:GENERATOR -ne "MSYS Makefiles") { - cmake -D ENABLE_TRACE=ON -D BUILD_CLAR=ON -D MSVC_CRTDBG=ON .. -G"$env:GENERATOR" + cmake -D ENABLE_TRACE=ON -D BUILD_CLAR=ON -D BUILD_EXAMPLES=ON -D MSVC_CRTDBG=ON .. -G"$env:GENERATOR" cmake --build . --config Debug } - cmd: | diff --git a/script/appveyor-mingw.sh b/script/appveyor-mingw.sh index d171a72d5..6b2a9425e 100755 --- a/script/appveyor-mingw.sh +++ b/script/appveyor-mingw.sh @@ -19,5 +19,5 @@ fi cd build gcc --version cmake --version -cmake -D ENABLE_TRACE=ON -D BUILD_CLAR=ON .. -G"$GENERATOR" +cmake -D ENABLE_TRACE=ON -D BUILD_CLAR=ON -D BUILD_EXAMPLES=ON .. -G"$GENERATOR" cmake --build . --config RelWithDebInfo