2018-04-17 23:28:29 +00:00
|
|
|
project('write-as-gtk', ['vala', 'c'],
|
|
|
|
version: '0.1',
|
|
|
|
license: 'GNU',
|
|
|
|
meson_version: '>=0.40.1')
|
2018-04-16 22:00:09 +00:00
|
|
|
|
2018-04-16 22:34:21 +00:00
|
|
|
i18n = import('i18n')
|
|
|
|
conf = configuration_data()
|
|
|
|
conf.set_quoted('GETTEXT_PACKAGE', meson.project_name())
|
|
|
|
configure_file(output: 'config.h', configuration: conf)
|
|
|
|
config_h_dir = include_directories('.')
|
|
|
|
|
2018-04-16 22:00:09 +00:00
|
|
|
subdir('data')
|
2018-04-16 22:34:21 +00:00
|
|
|
subdir('src')
|