mirror of
https://github.com/pybind/pybind11.git
synced 2024-11-11 16:13:53 +00:00
e248869893
* Fix undefined memoryview format * Add missing <algorithm> header * Add workaround for py27 array compatibility * Workaround py27 memoryview behavior * Fix memoryview constructor from buffer_info * Workaround PyMemoryView_FromMemory availability in py27 * Fix up memoryview tests * Update memoryview test from buffer to check signedness * Use static factory method to create memoryview * Remove ndim arg from memoryview::frombuffer and add tests * Allow ndim=0 memoryview and documentation fixup * Use void* to align to frombuffer method signature * Add const variants of frombuffer and frommemory * Add memory view section in doc * Fix docs * Add test for null buffer * Workaround py27 nullptr behavior in test * Rename frombuffer to from_buffer
23 lines
660 B
Plaintext
23 lines
660 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
|