From 590171e6aabcb679f245656907c8710008679d2c Mon Sep 17 00:00:00 2001 From: "Ralf W. Grosse-Kunstleve" Date: Tue, 21 Jun 2022 21:14:03 -0700 Subject: [PATCH] Add new header filename to CMakeLists.txt, test_files.py --- CMakeLists.txt | 1 + tests/extra_python_package/test_files.py | 1 + 2 files changed, 2 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index a423ae442..38443da66 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -115,6 +115,7 @@ set(PYBIND11_HEADERS include/pybind11/detail/smart_holder_sfinae_hooks_only.h include/pybind11/detail/smart_holder_type_casters.h include/pybind11/detail/type_caster_base.h + include/pybind11/detail/type_caster_odr_guard.h include/pybind11/detail/typeid.h include/pybind11/attr.h include/pybind11/buffer_info.h diff --git a/tests/extra_python_package/test_files.py b/tests/extra_python_package/test_files.py index 8206000c9..7bcb5e59d 100644 --- a/tests/extra_python_package/test_files.py +++ b/tests/extra_python_package/test_files.py @@ -48,6 +48,7 @@ detail_headers = { "include/pybind11/detail/smart_holder_sfinae_hooks_only.h", "include/pybind11/detail/smart_holder_type_casters.h", "include/pybind11/detail/type_caster_base.h", + "include/pybind11/detail/type_caster_odr_guard.h", "include/pybind11/detail/typeid.h", }