blob: bcdc7026d0f03736f5cac59cd9001739d0bd63bb [file] [log] [blame]
John Wedig2098dab2021-09-14 13:56:28 -07001project(
2 'eStoraged',
3 'cpp',
Konstantin Aladyshevf1c89ef2024-03-29 18:02:19 +03004 version: '1.0', meson_version: '>=0.59.0',
John Wedig2098dab2021-09-14 13:56:28 -07005 default_options: [
6 'warning_level=3',
7 'werror=true',
8 'cpp_std=c++20',
9 ],
10)
11
12eStoraged_root = meson.current_source_dir()
John Wedig2098dab2021-09-14 13:56:28 -070013
John Edward Broadbente6ffe702021-10-14 14:03:11 -070014subdir('include')
John Edward Broadbente6ffe702021-10-14 14:03:11 -070015subdir('src')
John Wedig2f187342022-04-20 12:47:03 -070016subdir('service_files')