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.
18 lines
392 B
18 lines
392 B
project('doxygen test', 'cpp', version : '0.1.0') |
|
|
|
doxygen = find_program('doxygen', required : false) |
|
if not doxygen.found() |
|
error('MESON_SKIP_TEST doxygen not found.') |
|
endif |
|
|
|
cdata = configuration_data() |
|
cdata.set('VERSION', meson.project_version()) |
|
|
|
if find_program('dot', required : false).found() |
|
cdata.set('HAVE_DOT', 'YES') |
|
else |
|
cdata.set('HAVE_DOT', 'NO') |
|
endif |
|
|
|
subdir('doc') |
|
|
|
|