X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;ds=sidebyside;f=shared%2Fmeson.build;h=1bb183b9a2e8107dc0753091421a269637b077c3;hb=539609eb56b496e6eff8a5e0a92fa0325936a5d7;hp=8d1b203c7cd56e65feecd9eceea757f3dc3926f4;hpb=4a38970b4e8cd4bce1dd9eabd56a45635501bbc3;p=nageru diff --git a/shared/meson.build b/shared/meson.build index 8d1b203..1bb183b 100644 --- a/shared/meson.build +++ b/shared/meson.build @@ -1,8 +1,9 @@ qt5 = import('qt5') qt5deps = dependency('qt5', modules: ['OpenGL']) +libmicrohttpddep = dependency('libmicrohttpd') -srcs = ['memcpy_interleaved.cpp', 'metacube2.cpp', 'ffmpeg_raii.cpp', 'mux.cpp', 'metrics.cpp', 'context.cpp'] -shared = static_library('shared', srcs, include_directories: top_include, dependencies: qt5deps) +srcs = ['memcpy_interleaved.cpp', 'metacube2.cpp', 'ffmpeg_raii.cpp', 'mux.cpp', 'metrics.cpp', 'context.cpp', 'httpd.cpp'] +shared = static_library('shared', srcs, include_directories: top_include, dependencies: [qt5deps, libmicrohttpddep]) shareddep = declare_dependency( include_directories: top_include, link_with: shared)