diff options
author | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2020-11-24 18:52:40 +0200 |
---|---|---|
committer | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2020-12-01 15:15:01 +0200 |
commit | f4fae10b4787694ab05f0427ce08dac5cdd3a4e1 (patch) | |
tree | 3a5cf8cef88f702c43ed1f62623b55d97a4f2d9f | |
parent | 20cf381c65df4c8cd45f00061f14f44e3780072e (diff) |
Documentation: Fix doxygen warning
Recent doxygen versions don't appreciate unquoted PROJECT_NUMBER values
that contain spaces. Fix this by quoting the string.
Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
Reviewed-by: Jacopo Mondi <jacopo@jmondi.org>
-rw-r--r-- | Documentation/Doxyfile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/Doxyfile.in b/Documentation/Doxyfile.in index 87959e23..4bbacc46 100644 --- a/Documentation/Doxyfile.in +++ b/Documentation/Doxyfile.in @@ -39,7 +39,7 @@ PROJECT_NAME = "libcamera" # could be handy for archiving the generated documentation or if some version # control system is used. -PROJECT_NUMBER = @VERSION@ +PROJECT_NUMBER = "@VERSION@" # Using the PROJECT_BRIEF tag one can provide an optional one line description # for a project that appears at the top of each page and should give viewer a |