mirror of
https://gitlab.freedesktop.org/libinput/libinput.git
synced 2025-12-24 20:30:04 +01:00
Doing so means we can ditch the specific input list for doxygen and just copy all files over into our builddir/doc/ subdir, then use that subdirectory as input data. This relies on meson putting a subdir() into a subdirectory in the build directory. This isn't technically guaranteed but I also suspect that if meson ever changes that, lots of other projects will break. Even in that case we should build just fine since we now filter for *.h and *.dox and don't copy any other doxygen-commented files into the builddir anyway. Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
31 lines
1.1 KiB
Text
31 lines
1.1 KiB
Text
PROJECT_NAME = @PACKAGE_NAME@
|
|
PROJECT_NUMBER = @PACKAGE_VERSION@
|
|
PROJECT_BRIEF = "A wrapper library for input devices"
|
|
JAVADOC_AUTOBRIEF = YES
|
|
TAB_SIZE = 8
|
|
OPTIMIZE_OUTPUT_FOR_C = YES
|
|
EXTRACT_ALL = YES
|
|
EXTRACT_STATIC = YES
|
|
MAX_INITIALIZER_LINES = 0
|
|
QUIET = YES
|
|
INPUT = "@builddir@"
|
|
FILTER_PATTERNS = *.h *.dox
|
|
IMAGE_PATH = "@builddir@"
|
|
GENERATE_HTML = YES
|
|
HTML_OUTPUT = Documentation
|
|
SEARCHENGINE = NO
|
|
USE_MATHJAX = YES
|
|
MATHJAX_RELPATH = https://cdn.mathjax.org/mathjax/latest
|
|
GENERATE_LATEX = NO
|
|
MACRO_EXPANSION = YES
|
|
EXPAND_ONLY_PREDEF = YES
|
|
PREDEFINED = LIBINPUT_ATTRIBUTE_PRINTF(f, a)= \
|
|
LIBINPUT_ATTRIBUTE_DEPRECATED
|
|
DOTFILE_DIRS = "@builddir@"
|
|
|
|
HTML_HEADER = "@builddir@/header.html"
|
|
HTML_FOOTER = "@builddir@/footer.html"
|
|
HTML_EXTRA_STYLESHEET = "@builddir@/bootstrap.css" \
|
|
"@builddir@/customdoxygen.css" \
|
|
"@builddir@/libinputdoxygen.css"
|
|
USE_MDFILE_AS_MAINPAGE = "README.md"
|