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
|
libfoundry_config_conf.set10('FOUNDRY_FEATURE_DOCS', true)
foundry_sources += files([
'foundry-documentation.c',
'foundry-documentation-bundle.c',
'foundry-documentation-intent.c',
'foundry-documentation-manager.c',
'foundry-documentation-matches.c',
'foundry-documentation-provider.c',
'foundry-documentation-query.c',
'foundry-documentation-root.c',
])
foundry_headers += files([
'foundry-documentation.h',
'foundry-documentation-bundle.h',
'foundry-documentation-intent.h',
'foundry-documentation-manager.h',
'foundry-documentation-matches.h',
'foundry-documentation-provider.h',
'foundry-documentation-query.h',
'foundry-documentation-root.h',
])
foundry_include_directories += [include_directories('.')]
|