blob: d749b3df6c54f3c6f395d6a14f021959e1bf863f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
plugin_dir = join_paths(get_option('libdir'), 'gs-plugins-' + gs_plugin_api_version)
plugin_libs = [
appstream_glib,
gio_unix,
goa,
gtk,
json_glib,
libsoup
]
subdir('core')
subdir('dpkg')
subdir('dummy')
subdir('fedora-langpacks')
subdir('fedora-pkgdb-collections')
if get_option('eos_updater')
subdir('eos-updater')
endif
if get_option('flatpak')
subdir('flatpak')
endif
if get_option('fwupd')
subdir('fwupd')
endif
if get_option('gudev')
subdir('modalias')
endif
if get_option('malcontent')
subdir('malcontent')
endif
if get_option('odrs')
subdir('odrs')
endif
if get_option('packagekit')
subdir('packagekit')
endif
subdir('repos')
if get_option('rpm_ostree')
subdir('rpm-ostree')
endif
if get_option('snap')
subdir('snap')
endif
if get_option('external_appstream')
subdir('external-appstream')
endif
|