Files
RedScarfEngine/meson.build
T
Piotr Krygier ca1477b500 Add subprojects
Instead of relying on host system, some dependencies had been added using meson wrap DB and custom meson wrappers.

Signed-off-by: Piotr Krygier <piotrkrygier@everyonecancode@xyz>
2026-06-08 20:26:37 +02:00

17 lines
307 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')