From f0d67a082a0f28d7b4380d3b6a88f1041bfae8bb Mon Sep 17 00:00:00 2001 From: Aqua-sama Date: Fri, 14 Feb 2020 11:44:38 +0200 Subject: staging: add filterlist parallel downloader --- staging/filterlist/meson.build | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 staging/filterlist/meson.build (limited to 'staging/filterlist/meson.build') diff --git a/staging/filterlist/meson.build b/staging/filterlist/meson.build new file mode 100644 index 0000000..b8f2263 --- /dev/null +++ b/staging/filterlist/meson.build @@ -0,0 +1,15 @@ +dep_staging_utils = declare_dependency( + include_directories: include_directories('.'), + link_with: static_library('staging-utils', + [ 'downloadmanager.cpp', + mod_qt5.preprocess(moc_headers: 'downloadmanager.h') + ], + dependencies: dep_qt5 + ) +) + +executable('filterlist', + dependencies: [ dep_qt5, dep_staging_utils ], + sources: [ 'test/main.cpp' ] +) + -- cgit v1.2.1