File tree Expand file tree Collapse file tree 3 files changed +37
-0
lines changed
Expand file tree Collapse file tree 3 files changed +37
-0
lines changed Original file line number Diff line number Diff line change 1+ call " %VS140COMNTOOLS% \..\..\VC\vcvarsall.bat" x64
2+ set DISTUTILS_USE_SDK = 1
3+ set MSSdk = 1
4+ " %PYTHON% " setup.py install
5+ if errorlevel 1 exit 1
Original file line number Diff line number Diff line change 1+ #! /bin/bash
2+ ${PYTHON} setup.py install;
3+
Original file line number Diff line number Diff line change 1+ package :
2+ name : pbtest
3+ version : {{ environ.get('GIT_DESCRIBE_TAG', '') }}
4+
5+ build :
6+ number : {{ environ.get('GIT_DESCRIBE_NUMBER', 0) }}
7+ {% if environ.get('GIT_DESCRIBE_NUMBER', '0') == '0' %}string: py{{ environ.get('PY_VER').replace('.', '') }}_0
8+ {% else %}string: py{{ environ.get('PY_VER').replace('.', '') }}_{{ environ.get('GIT_BUILD_STR', 'GIT_STUB') }}{% endif %}
9+
10+ source :
11+ git_url : ../
12+
13+ requirements :
14+ build :
15+ - python
16+ - setuptools
17+ - pybind11
18+
19+ run :
20+ - python
21+ - vs2015_runtime # [win]
22+
23+ test :
24+ imports :
25+ - pbtest
26+
27+ about :
28+ summary : An example project built with pybind11.
29+ license_file : LICENSE
You can’t perform that action at this time.
0 commit comments