X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=shared%2Fmeson.build;h=90711c02f1f17a8043e2be55fbcab61479894951;hb=d1e616378bda406c96acf7c2dc975b7ab2e8165e;hp=22d4c19731c0bd6daf382791f4360cab24421f32;hpb=bf30d7ade52ca87510a021147c3d32d55fcf813d;p=nageru diff --git a/shared/meson.build b/shared/meson.build index 22d4c19..90711c0 100644 --- a/shared/meson.build +++ b/shared/meson.build @@ -2,6 +2,7 @@ qt5 = import('qt5') shared_qt5deps = dependency('qt5', modules: ['Core', 'Gui', 'Widgets', 'OpenGL']) libmicrohttpddep = dependency('libmicrohttpd') protobufdep = dependency('protobuf') +alsadep = dependency('alsa') # Preprocess Qt as needed. qt_files = qt5.preprocess( @@ -9,13 +10,13 @@ qt_files = qt5.preprocess( ui_files: ['aboutdialog.ui'], dependencies: shared_qt5deps) -srcs = ['memcpy_interleaved.cpp', 'metacube2.cpp', 'ffmpeg_raii.cpp', 'mux.cpp', 'metrics.cpp', 'context.cpp', 'httpd.cpp', 'disk_space_estimator.cpp', 'read_file.cpp', 'text_proto.cpp'] +srcs = ['memcpy_interleaved.cpp', 'metacube2.cpp', 'ffmpeg_raii.cpp', 'mux.cpp', 'metrics.cpp', 'context.cpp', 'httpd.cpp', 'disk_space_estimator.cpp', 'read_file.cpp', 'text_proto.cpp', 'midi_device.cpp'] # Qt objects. srcs += qt_files srcs += ['aboutdialog.cpp'] -shared = static_library('shared', srcs, include_directories: top_include, dependencies: [shared_qt5deps, libmicrohttpddep, protobufdep]) +shared = static_library('shared', srcs, include_directories: top_include, dependencies: [shared_qt5deps, libmicrohttpddep, protobufdep, alsadep]) shareddep = declare_dependency( include_directories: top_include, link_with: shared)