From 7de474f95660b3b8e8775fd58c6556d5a6e3480e Mon Sep 17 00:00:00 2001 From: "Ralf W. Grosse-Kunstleve" Date: Mon, 1 Jul 2024 18:09:19 -0700 Subject: [PATCH] Add new include files to CMakeLists.txt, tests/extra_python_package/test_files.py --- CMakeLists.txt | 4 ++++ tests/extra_python_package/test_files.py | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 3526a1a66..e02073845 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -150,8 +150,11 @@ set(PYBIND11_HEADERS include/pybind11/detail/class.h include/pybind11/detail/common.h include/pybind11/detail/descr.h + include/pybind11/detail/dynamic_raw_ptr_cast_if_possible.h include/pybind11/detail/init.h include/pybind11/detail/internals.h + include/pybind11/detail/smart_holder_poc.h + include/pybind11/detail/smart_holder_type_caster_support.h include/pybind11/detail/type_caster_base.h include/pybind11/detail/typeid.h include/pybind11/attr.h @@ -178,6 +181,7 @@ set(PYBIND11_HEADERS include/pybind11/stl.h include/pybind11/stl_bind.h include/pybind11/stl/filesystem.h + include/pybind11/trampoline_self_life_support.h include/pybind11/type_caster_pyobject_ptr.h include/pybind11/typing.h) diff --git a/tests/extra_python_package/test_files.py b/tests/extra_python_package/test_files.py index 5a3f779a7..8f7aec48c 100644 --- a/tests/extra_python_package/test_files.py +++ b/tests/extra_python_package/test_files.py @@ -48,14 +48,18 @@ main_headers = { "include/pybind11/stl_bind.h", "include/pybind11/type_caster_pyobject_ptr.h", "include/pybind11/typing.h", + "include/pybind11/trampoline_self_life_support.h", } detail_headers = { "include/pybind11/detail/class.h", "include/pybind11/detail/common.h", "include/pybind11/detail/descr.h", + "include/pybind11/detail/dynamic_raw_ptr_cast_if_possible.h", "include/pybind11/detail/init.h", "include/pybind11/detail/internals.h", + "include/pybind11/detail/smart_holder_poc.h", + "include/pybind11/detail/smart_holder_type_caster_support.h", "include/pybind11/detail/type_caster_base.h", "include/pybind11/detail/typeid.h", }