From 22155e575a7f137fce66a82678535dbafce30806 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Tue, 18 Mar 2014 22:02:51 +0100 Subject: [PATCH] Don't show *_EXPORT macros in the documentation. Got broken probably when trying to work around the issues with CORRADE_DEPRECATED() macro. --- Doxyfile | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/Doxyfile b/Doxyfile index 542a114ab..ec1dd4e2d 100644 --- a/Doxyfile +++ b/Doxyfile @@ -1653,7 +1653,19 @@ INCLUDE_FILE_PATTERNS = # instead of the = operator. PREDEFINED = DOXYGEN_GENERATING_OUTPUT \ - MAGNUM_BUILD_DEPRECATED CORRADE_DEPRECATED(message)= + MAGNUM_BUILD_DEPRECATED CORRADE_DEPRECATED(message)= \ + MAGNUM_EXPORT= \ + MAGNUM_AUDIO_EXPORT= \ + MAGNUM_DEBUGTOOLS_EXPORT= \ + MAGNUM_MATH_EXPORT= \ + MAGNUM_MESHTOOLS_EXPORT= \ + MAGNUM_PLATFORM_EXPORT= \ + MAGNUM_PRIMITIVES_EXPORT= \ + MAGNUM_SCENEGRAPH_EXPORT= \ + MAGNUM_SHADERS_EXPORT= \ + MAGNUM_SHAPES_EXPORT= \ + MAGNUM_TEXT_EXPORT= \ + MAGNUM_TEXTURETOOLS_EXPORT= # If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then # this tag can be used to specify a list of macro names that should be expanded.