23 lines
466 B
Meson
23 lines
466 B
Meson
python.install_sources(
|
|
files(
|
|
'__init__.py',
|
|
'__main__.py',
|
|
'application.py',
|
|
'collections.py',
|
|
'gamepads.py',
|
|
'games.py',
|
|
),
|
|
subdir: 'cartridges',
|
|
)
|
|
|
|
install_subdir('sources', install_dir: python.get_install_dir() / 'cartridges')
|
|
|
|
configure_file(
|
|
input: 'config.py.in',
|
|
output: '@BASENAME@',
|
|
configuration: conf,
|
|
install_dir: python.get_install_dir(subdir: 'cartridges'),
|
|
)
|
|
|
|
subdir('ui')
|