Exclude private C++ API from the reference documentation

The path to the API meant to be excluded needs to be adjusted after the folder renaming.
This commit is contained in:
Simon Hausmann 2022-02-02 09:20:56 +01:00
parent 5bc1e74e27
commit 98ffd629cf

View file

@ -61,7 +61,7 @@ exhale_args = {
"exhaleExecutesDoxygen": True,
"exhaleDoxygenStdin": """INPUT = ../../api/cpp/include generated_include
EXCLUDE_SYMBOLS = sixtyfps::cbindgen_private* sixtyfps::private_api* vtable* SIXTYFPS_DECL_ITEM
EXCLUDE = ../../api/cpp/include/vtable.h ../../api/sixtyfps-cpp/include/sixtyfps_testing.h
EXCLUDE = ../../api/cpp/include/vtable.h ../../api/cpp/include/sixtyfps_testing.h
ENABLE_PREPROCESSING = YES
PREDEFINED += DOXYGEN
WARN_AS_ERROR = YES""",