diff options
author | Barnabás Pőcze <barnabas.pocze@ideasonboard.com> | 2024-12-04 15:23:28 +0100 |
---|---|---|
committer | Barnabás Pőcze <barnabas.pocze@ideasonboard.com> | 2025-05-05 09:20:39 +0200 |
commit | 2f62701e9e714785cf7063da7720a56a73cac02a (patch) | |
tree | 9d7434567934bb49ddbbaf12da09b05058b45221 /Documentation/guides/application-developer.rst | |
parent | 12007759863a59b8434a20d822b6496d0383623d (diff) |
`required: true` is the default for meson's `dependency()` function.
Signed-off-by: Barnabás Pőcze <barnabas.pocze@ideasonboard.com>
Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
Diffstat (limited to 'Documentation/guides/application-developer.rst')
-rw-r--r-- | Documentation/guides/application-developer.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/guides/application-developer.rst b/Documentation/guides/application-developer.rst index f3798d17..6501345a 100644 --- a/Documentation/guides/application-developer.rst +++ b/Documentation/guides/application-developer.rst @@ -618,7 +618,7 @@ accordingly. In this example, the application file has been named simple_cam = executable('simple-cam', 'simple-cam.cpp', - dependencies: dependency('libcamera', required : true)) + dependencies: dependency('libcamera')) The ``dependencies`` line instructs meson to ask ``pkgconfig`` (or ``cmake``) to locate the ``libcamera`` library, which the test application will be |