Skip to content

Commit f5e0300

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

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.appveyor.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,18 @@ clone_folder: C:\projects\pybind11
44
branches:
55
only:
66
- master
7+
environment:
8+
matrix:
9+
- CMAKE_PLATFORM: "Visual Studio 14 2015"
10+
PYTHON_DIR: "C:\\Python34"
11+
- CMAKE_PLATFORM: "Visual Studio 14 2015 Win64"
12+
PYTHON_DIR: "C:\\Python34-x64"
713
install:
814
- cinstall: python
915
build_script:
1016
- echo Running cmake...
1117
- 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
18+
- 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
1319
- set MSBuildLogger="C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll"
1420
- set MSBuildOptions=/v:m /p:Configuration=Release /logger:%MSBuildLogger%
1521
- msbuild %MSBuildOptions% pybind11.sln

0 commit comments

Comments
 (0)