X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=shared%2Fmeson.build;h=49c52ee65bc6743d4b969ec299c3a3c5b3dbf826;hb=db71f5501fe92501c09a32c778fbacccadd26206;hp=09bf99027fa63a6c31aecd0a52e739289e8097ed;hpb=b563b8903fa84bb7fd62d7d0b84b70cb26843dbf;p=nageru diff --git a/shared/meson.build b/shared/meson.build index 09bf990..49c52ee 100644 --- a/shared/meson.build +++ b/shared/meson.build @@ -1,7 +1,25 @@ +qt5 = import('qt5') +qt5deps = dependency('qt5', modules: ['Core', 'Gui', 'Widgets', 'OpenGL']) +libmicrohttpddep = dependency('libmicrohttpd') -srcs = ['memcpy_interleaved.cpp', 'metacube2.cpp', 'ffmpeg_raii.cpp'] -shared = static_library('shared', srcs, include_directories: top_include) +# Preprocess Qt as needed. +qt_files = qt5.preprocess( + moc_headers: ['aboutdialog.h'], + ui_files: ['aboutdialog.ui'], + dependencies: 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'] + +# Qt objects. +srcs += qt_files +srcs += ['aboutdialog.cpp'] + +shared = static_library('shared', srcs, include_directories: top_include, dependencies: [qt5deps, libmicrohttpddep]) shareddep = declare_dependency( include_directories: top_include, - link_with: shared, - sources: srcs) + link_with: shared) + +bin2h = executable('bin2h', 'bin2h.cpp') +bin2h_gen = generator(bin2h, \ + output : ['@PLAINNAME@.cpp'], + arguments : ['@INPUT@', '@PLAINNAME@', '@OUTPUT@'])