blob: dd2101f6a6730812b86894da08d35d9a31ebedc6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
environment:
PYTHON: "C:\\Python34"
PYTHON_VERSION: "3.4.1"
PYTHON_ARCH: "32"
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
test_script:
- |
pushd build && nmake /nologo test
|