mirror of
https://github.com/pybind/pybind11.git
synced 2024-11-11 08:03:55 +00:00
0c5cc031ee
* Deprecated public constructors of module * Turn documentation comment of module_::add_object into valid doxygen documentation * Move definition of PYBIND11_DETAIL_MODULE_STATIC_DEF and PYBIND11_DETAIL_MODULE_CREATE macros up * Move detail::create_top_level_module to module_::create_extension_module, and unify Python 2 and 3 signature again * Throw error_already_set if module creation fails in module_::create_extension_module * Mention module_::create_extension_module in deprecation warning message of module_::module_
24 lines
705 B
Plaintext
24 lines
705 B
Plaintext
PROJECT_NAME = pybind11
|
|
INPUT = ../include/pybind11/
|
|
RECURSIVE = YES
|
|
|
|
GENERATE_HTML = NO
|
|
GENERATE_LATEX = NO
|
|
GENERATE_XML = YES
|
|
XML_OUTPUT = .build/doxygenxml
|
|
XML_PROGRAMLISTING = YES
|
|
|
|
MACRO_EXPANSION = YES
|
|
EXPAND_ONLY_PREDEF = YES
|
|
EXPAND_AS_DEFINED = PYBIND11_RUNTIME_EXCEPTION
|
|
|
|
ALIASES = "rst=\verbatim embed:rst"
|
|
ALIASES += "endrst=\endverbatim"
|
|
|
|
QUIET = YES
|
|
WARNINGS = YES
|
|
WARN_IF_UNDOCUMENTED = NO
|
|
PREDEFINED = DOXYGEN_SHOULD_SKIP_THIS \
|
|
PY_MAJOR_VERSION=3 \
|
|
PYBIND11_NOINLINE
|