Skip to content

Commit 42af9c2

Browse files
author
Wenzel Jakob
committed
appveyor: legacy build on win32
1 parent 5db63fb commit 42af9c2

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

.appveyor.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,22 @@
11
version: 1.0.{build}
22
os: Visual Studio 2015
33
clone_folder: C:\projects\pybind11
4+
test: off
45
branches:
56
only:
67
- master
8+
environment:
9+
matrix:
10+
- CMAKE_PLATFORM: "Visual Studio 14 2015"
11+
PYTHON_DIR: "C:\\Python34"
12+
- CMAKE_PLATFORM: "Visual Studio 14 2015 Win64"
13+
PYTHON_DIR: "C:\\Python34-x64"
714
install:
815
- cinstall: python
916
build_script:
1017
- echo Running cmake...
1118
- cd c:\projects\pybind11
12-
- cmake -G "Visual Studio 14 2015 Win64" -DPYTHON_INCLUDE_DIR:PATH=C:/Python34-x64/include -DPYTHON_LIBRARY:FILEPATH=C:/Python34-x64/libs/python34.lib -DPYTHON_EXECUTABLE:FILEPATH=C:/Python34-x64/python.exe
19+
- cmake -G "%CMAKE_PLATFORM%" -DPYTHON_INCLUDE_DIR:PATH=%PYTHON_DIR%/include -DPYTHON_LIBRARY:FILEPATH=%PYTHON_DIR%/libs/python34.lib -DPYTHON_EXECUTABLE:FILEPATH=%PYTHON_DIR%/python.exe
1320
- set MSBuildLogger="C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll"
1421
- set MSBuildOptions=/v:m /p:Configuration=Release /logger:%MSBuildLogger%
1522
- msbuild %MSBuildOptions% pybind11.sln

0 commit comments

Comments
 (0)