From 0c47413495b3fb1e0cbffc649e6ab542fa9f5a62 Mon Sep 17 00:00:00 2001 From: Kieran Bingham Date: Tue, 19 May 2020 13:55:51 +0100 Subject: 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 --- meson.build | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) (limited to 'meson.build') 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) -- cgit v1.2.1