From faeba85ab99d554a48168e763b0c26067fa44393 Mon Sep 17 00:00:00 2001 From: pommicket Date: Sun, 16 Feb 2025 15:54:37 -0500 Subject: unique camera ID --- meson.build | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'meson.build') diff --git a/meson.build b/meson.build index 56ea33c..54cffb0 100644 --- a/meson.build +++ b/meson.build @@ -7,9 +7,12 @@ project('camlet', libv4l2 = dependency('libv4l2') sdl2 = dependency('SDL2') +udev = dependency('libudev') +gl = dependency('GL') +sodium = dependency('libsodium') if get_option('debug') debug_def = '-DDEBUG=1' else debug_def = '-DDEBUG=0' endif -executable('camlet', 'main.c', 'lib/stb_image_write.c', dependencies: [libv4l2, sdl2], c_args: ['-Wno-unused-function', '-Wno-format-truncation', '-Wshadow', debug_def]) +executable('camlet', 'main.c', 'lib/stb_image_write.c', dependencies: [libv4l2, sdl2, gl, udev, sodium], c_args: ['-Wno-unused-function', '-Wno-format-truncation', '-Wshadow', debug_def]) -- cgit v1.2.3