diff options
author | John MacFarlane <jgm@berkeley.edu> | 2015-04-25 12:41:13 -0700 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2015-04-25 12:41:13 -0700 |
commit | 67e3f65c5f196f3f80dfe4a224a4727a3093e5ae (patch) | |
tree | bcea7a7082075477aa982f5b7ef1e622304fa476 | |
parent | 062aee9292d807c90c28fa0a09a888d34bee4dd3 (diff) |
Fixed appveyor build_script
-rw-r--r-- | appveyor.yml | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/appveyor.yml b/appveyor.yml index 71ff3cd..0c66d7d 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -7,11 +7,9 @@ build_script: - | mkdir build 2> nul pushd build - cmake \ - -G "NMake Makefiles" \ - -D CMAKE_BUILD_TYPE="Release" \ - -D CMAKE_INSTALL_PREFIX="windows" \ - nmake /nologo && popd + cmake -G "NMake Makefiles" -D CMAKE_BUILD_TYPE="Release" -D CMAKE_INSTALL_PREFIX="windows" + nmake /nologo + popd test_script: - | |