web-stack-project/meson.build
2023-01-09 01:15:32 +01:00

16 lines
239 B
Meson

project(
'web-stack-project',
'cpp',
version: '0.1',
default_options: [
'warning_level=3',
'cpp_std=c++20',
],
)
subdir('utils')
subdir('scriptlang')
subdir('markup')
subdir('server')
subdir('browser')