- Commit
- 74dfc16b9d57a93249849b7956c8da7af36bf63d
- Parent
- c6222ca227948b598f58cc26a47c4227baeb1b37
- Author
- John MacFarlane <jgm@berkeley.edu>
- Date
Tried build_script in appveyor.yml
My personal build of CMark ✏️
Tried build_script in appveyor.yml
1 file changed, 10 insertions, 6 deletions
Status | File Name | N° Changes | Insertions | Deletions |
Modified | appveyor.yml | 16 | 10 | 6 |
diff --git 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