Initial commit

This commit is contained in:
Joshua Strobl 2023-02-04 19:38:07 +02:00
commit 13b183cada
16 changed files with 557 additions and 0 deletions

30
meson.build Normal file
View file

@ -0,0 +1,30 @@
project(
'budgie-desktop-defaults',
'c',
version: '0.1',
license: [
'CC-BY-SA-4.0'
],
default_options : [
'warning_level=3'
]
)
path_prefix = get_option('prefix')
path_data = join_paths(path_prefix, get_option('datadir'))
path_schema = join_paths(path_data, 'glib-2.0', 'schemas')
subdir('budgie')
subdir('gnome')
subdir('lightdm')
report = [
' Build configuration:',
' ====================',
'',
' prefix: @0@'.format(path_prefix),
' datadir: @0@'.format(path_data),
' schema dir: @0@'.format(path_schema),
]
message('\n\n\n' + '\n'.join(report) + '\n\n')