bbbe69d73c
Moved stuff around. Create an entry point for RSE. Created base for events module Signed-off-by: Piotr Krygier <piotrkrygier@everyonecancode@xyz>
15 lines
253 B
Meson
15 lines
253 B
Meson
project('RedScarfEngine',
|
|
['c', 'cpp'],
|
|
version: '0.0.1',
|
|
default_options: [
|
|
'warning_level=3',
|
|
'werror=true'
|
|
])
|
|
|
|
subdir('utilities')
|
|
subdir('graphics')
|
|
subdir('events')
|
|
|
|
subdir('red_scarf_engine')
|
|
|