You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
396 B
Meson
16 lines
396 B
Meson
2 years ago
|
pkgdatadir = join_paths(get_option('prefix'), get_option('datadir'), meson.project_name())
|
||
|
widgetsdir = join_paths(pkgdatadir, 'jade_gui/widgets')
|
||
|
|
||
|
jade_gui_sources = [
|
||
|
'__init__.py',
|
||
|
'timezone.py',
|
||
|
'layout.py',
|
||
|
'variant.py',
|
||
|
'desktop.py',
|
||
|
'disk.py',
|
||
|
'partition.py',
|
||
|
'locale.py',
|
||
|
'selected_locale.py',
|
||
|
]
|
||
|
install_data(jade_gui_sources, install_dir: widgetsdir)
|