aboutsummaryrefslogtreecommitdiff
path: root/ports/pybind11
diff options
context:
space:
mode:
authorAdam Johnson <AdamJohnso@gmail.com>2020-11-20 12:44:51 -0500
committerGitHub <noreply@github.com>2020-11-20 09:44:51 -0800
commit46068e8a37b41a7a0ba4f485a90d88d3a1071f33 (patch)
tree41c3fdad552efa9c4cc0d89954690c130d8539e6 /ports/pybind11
parente803bf11296d8e7900dafb41e7b1224778d33dc6 (diff)
downloadvcpkg-46068e8a37b41a7a0ba4f485a90d88d3a1071f33.tar.gz
vcpkg-46068e8a37b41a7a0ba4f485a90d88d3a1071f33.zip
[python3] Upgrade to 3.9.0 (#14510)
* [python3] Bump to 3.8.6. * [python3] Bump to 3.9.0. * [itk] Correct python artifact names. * [pybind11] Update python artifact names. * [vcpkg_find_acquire_program] Bump PYTHON3 to 3.9.0.
Diffstat (limited to 'ports/pybind11')
-rw-r--r--ports/pybind11/CONTROL1
-rw-r--r--ports/pybind11/portfile.cmake4
2 files changed, 3 insertions, 2 deletions
diff --git a/ports/pybind11/CONTROL b/ports/pybind11/CONTROL
index f2004f379..be711e1b1 100644
--- a/ports/pybind11/CONTROL
+++ b/ports/pybind11/CONTROL
@@ -1,5 +1,6 @@
Source: pybind11
Version: 2.6.0
+Port-Version: 1
Homepage: https://github.com/pybind/pybind11
Description: pybind11 is a lightweight header-only library that exposes C++ types in Python and vice versa, mainly to create Python bindings of existing C++ code.
Build-Depends: python3 (windows)
diff --git a/ports/pybind11/portfile.cmake b/ports/pybind11/portfile.cmake
index 0664ccf67..458c2a669 100644
--- a/ports/pybind11/portfile.cmake
+++ b/ports/pybind11/portfile.cmake
@@ -20,10 +20,10 @@ vcpkg_configure_cmake(
-DPYTHON_MODULE_EXTENSION=.dll
OPTIONS_RELEASE
-DPYTHON_IS_DEBUG=OFF
- -DPYTHON_LIBRARIES=${CURRENT_INSTALLED_DIR}/lib/python36.lib
+ -DPYTHON_LIBRARIES=${CURRENT_INSTALLED_DIR}/lib/python39.lib
OPTIONS_DEBUG
-DPYTHON_IS_DEBUG=ON
- -DPYTHON_LIBRARIES=${CURRENT_INSTALLED_DIR}/debug/lib/python36_d.lib
+ -DPYTHON_LIBRARIES=${CURRENT_INSTALLED_DIR}/debug/lib/python39_d.lib
)
vcpkg_install_cmake()