2025-02-24 12:01:19 +02:00
|
|
|
if not DOXYGEN.found()
|
2025-02-18 15:54:20 +01:00
|
|
|
subdir_done()
|
|
|
|
endif
|
|
|
|
|
2025-02-20 01:02:16 +01:00
|
|
|
current_build_dir = meson.current_build_dir()
|
|
|
|
current_source_dir = meson.current_source_dir()
|
2025-02-18 15:54:20 +01:00
|
|
|
make_devel_conf_data = configuration_data()
|
2025-02-20 01:02:16 +01:00
|
|
|
make_devel_conf_data.set('builddir', current_build_dir)
|
2025-02-28 11:00:03 +02:00
|
|
|
make_devel_conf_data.set('PACKAGE_VERSION', PROJECT_VERSION)
|
2025-02-20 01:02:16 +01:00
|
|
|
configure_file(
|
2025-02-18 15:54:20 +01:00
|
|
|
input: 'make-devel.sh.in',
|
|
|
|
output: 'make-devel.sh',
|
|
|
|
configuration: make_devel_conf_data,
|
|
|
|
)
|
2025-02-20 01:02:16 +01:00
|
|
|
make_devel = f'@current_build_dir@/make-devel.sh'
|
2025-02-21 14:47:24 +01:00
|
|
|
run_target('devel', command: [CD_AND_RUN, current_source_dir, make_devel])
|