1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
if not get_option('feature-git')
error('-Dplugin-gitlab=true requires -Dfeature-git=true')
endif
if not get_option('feature-forge')
error('-Dplugin-gitlab=true requires -Dfeature-forge=true')
endif
foundry_private_sources += files([
'plugin.c',
'plugin-gitlab-error.c',
'plugin-gitlab-forge.c',
'plugin-gitlab-issue.c',
'plugin-gitlab-key-rotator.c',
'plugin-gitlab-listing.c',
'plugin-gitlab-merge-request.c',
'plugin-gitlab-project.c',
'plugin-gitlab-user.c',
'plugin-gitlab-util.c',
])
schemas += files(['org.gnome.foundry.gitlab.gschema.xml.in'])
|