mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2026-06-30 13:14:16 -04:00
There was one file "libcamera.c" that was a C source file, which prevents the addition of C++ functions, includes, etc. to "libcamera.h". So compile that file as C++ as well.
13 lines
351 B
Meson
13 lines
351 B
Meson
libcamera_sources = [
|
|
'libcamera.cpp',
|
|
'libcamera-manager.cpp',
|
|
'libcamera-device.cpp',
|
|
'libcamera-source.cpp'
|
|
]
|
|
|
|
libcameralib = shared_library('spa-libcamera',
|
|
libcamera_sources,
|
|
include_directories : [ configinc ],
|
|
dependencies : [ spa_dep, libcamera_dep, pthread_lib ],
|
|
install : true,
|
|
install_dir : spa_plugindir / 'libcamera')
|