diff options
-rw-r--r-- | appveyor.yml | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/appveyor.yml b/appveyor.yml index ba535d8..44ad7f0 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -11,12 +11,11 @@ install: build_script: - | mkdir build 2> nul - pushd build + cd build cmake -G "NMake Makefiles" -D CMAKE_BUILD_TYPE="Release" -D CMAKE_INSTALL_PREFIX="windows" .. nmake /nologo - popd test_script: - | - pushd build && nmake /nologo test + cd build && nmake /nologo test |