Gradience/gradience/meson.build

16 lines
321 B
Meson
Raw Normal View History

moduledir = 'gradience'
2022-09-13 16:29:43 +00:00
subdir('backend')
subdir('frontend')
2022-08-11 16:44:51 +00:00
launcher = join_paths(meson.project_build_root(), moduledir, 'frontend', 'local-' + meson.project_name())
run_target('run',
command: [launcher]
)
2022-08-18 16:50:25 +00:00
gradience_sources = [
'__init__.py'
]
PY_INSTALLDIR.install_sources(gradience_sources, subdir: moduledir)