diff options
author | Kieran Bingham <kieran.bingham@ideasonboard.com> | 2020-05-19 13:55:51 +0100 |
---|---|---|
committer | Kieran Bingham <kieran.bingham@ideasonboard.com> | 2020-05-19 13:55:51 +0100 |
commit | 0c47413495b3fb1e0cbffc649e6ab542fa9f5a62 (patch) | |
tree | 9a5e679f5a4230f497f6ecbcbc716239c6d69575 | |
parent | 0fa1b394a05633e9de48ebbe888e143a0605181f (diff) |
simple-cam: Rename example application
The example app started out as a demo at elce, thus was named:
elce-cam.
Rename it to 'simple-cam' for longevity.
Signed-off-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
-rw-r--r-- | meson.build | 15 | ||||
-rw-r--r-- | simple-cam.cpp (renamed from elce-cam.cpp) | 0 |
2 files changed, 6 insertions, 9 deletions
diff --git a/meson.build b/meson.build index 1bcd2b1..fe52af7 100644 --- a/meson.build +++ b/meson.build @@ -1,4 +1,4 @@ -project('elce-cam', 'c', 'cpp', +project('simple-cam', 'c', 'cpp', default_options : [ 'werror=true', '-Wno-unused-parameter=true', @@ -6,11 +6,9 @@ project('elce-cam', 'c', 'cpp', 'cpp_std=c++14', ]) -# elce-cam source files -# elce-cam.cpp is the fully commented application -# mini=elce.cpp is for live coding during ELC-E 2019 +# simple-cam.cpp is the fully commented application src_files = files([ - 'elce-cam.cpp', + 'simple-cam.cpp', ]) # Point your PKG_CONFIG_PATH environment variable to the @@ -23,7 +21,6 @@ cpp_arguments = [ '-Wno-unused-parameter', ] add_project_arguments(cpp_arguments, language : 'cpp') -# elce-cam executable -elce_cam = executable('elce-cam', src_files, - dependencies : libcamera_deps, - install : false) +# simple-cam executable +simple_cam = executable('simple-cam', src_files, + dependencies : libcamera_deps) diff --git a/elce-cam.cpp b/simple-cam.cpp index 312d4a9..312d4a9 100644 --- a/elce-cam.cpp +++ b/simple-cam.cpp |