initial commit
This commit is contained in:
23
meson.build
Normal file
23
meson.build
Normal file
@@ -0,0 +1,23 @@
|
||||
project('sernatur',
|
||||
['c', 'vala'],
|
||||
version: '1.0.0',
|
||||
license: 'BSD-3',
|
||||
default_options: [
|
||||
'b_ofast=if-release',
|
||||
'b_march_native=if-release',
|
||||
'b_ndebug=if-release'
|
||||
]
|
||||
)
|
||||
add_global_arguments('-DGETTEXT_PACKAGE="sernatur"', language: 'c')
|
||||
|
||||
docs_enabled = get_option('valadocs')
|
||||
valadoc = find_program('valadoc', required: docs_enabled)
|
||||
|
||||
subdir('po')
|
||||
subdir('data')
|
||||
subdir('src')
|
||||
subdir('script')
|
||||
subdir('docs')
|
||||
|
||||
install_data('LICENSE', install_dir: join_paths(get_option('datadir'), 'doc', meson.project_name()))
|
||||
install_data('README.md', install_dir: join_paths(get_option('datadir'), 'doc', meson.project_name()))
|
Reference in New Issue
Block a user