Documentation: application-developer: Clean up build instructions

The build and run instructions read as if meson is the only way to
compile the application. Although this is recommended, it is not
required - adapt the language to fit better.

While here, fix the naming of the simple_cam meson object to match
the other usages of 'simple-cam'.

Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Signed-off-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
This commit is contained in:
Kieran Bingham 2021-07-28 09:11:08 +01:00
parent fe8b72a595
commit d2783171dd

View file

@ -563,8 +563,8 @@ uses, so needs to do the following:
Build and run instructions Build and run instructions
-------------------------- --------------------------
To build the application, use the `Meson build system`_ which is also the To build the application, we recommend that you use the `Meson build system`_
official build system of the libcamera library. which is also the official build system of the libcamera library.
Make sure both ``meson`` and ``libcamera`` are installed in your system. Please Make sure both ``meson`` and ``libcamera`` are installed in your system. Please
refer to your distribution documentation to install meson and install the most refer to your distribution documentation to install meson and install the most
@ -617,7 +617,7 @@ accordingly. In this example, the application file has been named
project('simple-cam', 'cpp') project('simple-cam', 'cpp')
simpler_cam = executable('simple-cam', simple_cam = executable('simple-cam',
'simple-cam.cpp', 'simple-cam.cpp',
dependencies: dependency('libcamera', required : true)) dependencies: dependency('libcamera', required : true))