mirror of
https://gitlab.freedesktop.org/libinput/libinput.git
synced 2025-12-20 20:50:06 +01:00
Using output: ['.'] broke ninja after ninja clean - it removed the whole directory and thus the meson-generated configure_files (i.e. all the doxygen sources we copied). ninja didn't know how to build those. Fix this by rearranging the doxygen output to build into a different directory now and setting the output to that. This doesn't exactly *fix* things since that directory is no longer removed during ninja clean, but at least the build no longer fails. Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
33 lines
1.1 KiB
Text
33 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
|
|
WARNINGS = YES
|
|
QUIET = YES
|
|
INPUT = "@builddir@"
|
|
IMAGE_PATH = "@builddir@"
|
|
OUTPUT_DIRECTORY = doc
|
|
GENERATE_HTML = YES
|
|
HTML_OUTPUT = html
|
|
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@"
|
|
EXAMPLE_PATH = "@builddir@"
|
|
SHOW_NAMESPACES = NO
|
|
|
|
HTML_HEADER = "@builddir@/header.html"
|
|
HTML_FOOTER = "@builddir@/footer.html"
|
|
HTML_EXTRA_STYLESHEET = "@builddir@/bootstrap.css" \
|
|
"@builddir@/customdoxygen.css" \
|
|
"@builddir@/libinputdoxygen.css"
|