99fb36d9fd
Added loading of avocado. Something is still wrong though, becaus I cannot see the seed. But basic functionality is there.
17 lines
309 B
Meson
17 lines
309 B
Meson
project('RedScarfEngine',
|
|
['c', 'cpp'],
|
|
version: '0.0.1',
|
|
default_options: [
|
|
'warning_level=3',
|
|
'werror=true'
|
|
])
|
|
|
|
# add_project_arguments('-DWAYLAND=1', language : 'c')
|
|
|
|
subdir('utilities')
|
|
subdir('graphics')
|
|
subdir('events')
|
|
|
|
subdir('red_scarf_engine')
|
|
|