From 74dfc16b9d57a93249849b7956c8da7af36bf63d Mon Sep 17 00:00:00 2001 From: John MacFarlane Date: Sat, 25 Apr 2015 12:28:04 -0700 Subject: Tried build_script in appveyor.yml --- appveyor.yml | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) (limited to 'appveyor.yml') diff --git a/appveyor.yml b/appveyor.yml index dcf15d7..dd2101f 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -3,13 +3,17 @@ environment: PYTHON_VERSION: "3.4.1" PYTHON_ARCH: "32" -configuration: - - Release - build_script: - - '@nmake.exe /nologo /f Makefile.nmake all' + - | + mkdir build 2> nul + pushd build + cmake \ + -G "NMake Makefiles" \ + -D CMAKE_BUILD_TYPE="Release" \ + -D CMAKE_INSTALL_PREFIX="windows" \ + nmake /nologo && popd test_script: - - '@nmake.exe /nologo /f Makefile.nmake test' - + - | + pushd build && nmake /nologo test -- cgit v1.2.3