diff options
author | Kieran Bingham <kieran.bingham@ideasonboard.com> | 2022-11-01 13:45:12 +0000 |
---|---|---|
committer | Kieran Bingham <kieran.bingham@ideasonboard.com> | 2022-11-22 12:12:02 +0000 |
commit | c301075386ff72d4b8e1672d8cdad2d815a9d4b0 (patch) | |
tree | 1473aa5a657c6cc04820946cf03d0e6d42b6f6d9 /src/CMakeLists.txt | |
parent | b101cefde93dc8e01d591913df2d5039a14c0289 (diff) |
src: Move main to src
Move the main uvc-gadget application to src/ to make it clear
there is a separation between library and application code.
Reviewed-by: Daniel Scally <dan.scally@ideasonboard.com>
Signed-off-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
Diffstat (limited to 'src/CMakeLists.txt')
-rw-r--r-- | src/CMakeLists.txt | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt new file mode 100644 index 0000000..9f94788 --- /dev/null +++ b/src/CMakeLists.txt @@ -0,0 +1,3 @@ +add_executable(uvc-gadget main.c) +target_link_libraries(uvc-gadget uvcgadget) +install(TARGETS uvc-gadget DESTINATION bin) |