The Meson Build System
http://mesonbuild.com/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
295 B
14 lines
295 B
1 year ago
|
project('gnome module without C', 'cpp')
|
||
|
|
||
|
gtkdoc = find_program('gtkdoc-scan', required: false)
|
||
|
if not gtkdoc.found()
|
||
|
error('MESON_SKIP_TEST gtkdoc not found.')
|
||
|
endif
|
||
|
|
||
|
gnome = import('gnome')
|
||
|
|
||
|
lib = library('foo++', 'foo.cpp')
|
||
|
gnome.gtkdoc('foo',
|
||
|
src_dir: '.',
|
||
|
main_xml : 'foo-docs.xml',)
|