blob: a113ae5e6221f047d851c446dc042c6ece10c0d2 [file] [log] [blame]
Jie Yangb988dbb2021-08-06 18:34:49 -07001project(
2 'phosphor-ipmi-blobs-binarystore',
3 'cpp',
4 version: '0.1',
5 meson_version: '>=0.57.0',
6 default_options: [
7 'cpp_std=c++20',
8 'warning_level=3',
9 'werror=true',
10 ]
11)
12
Jie Yangb988dbb2021-08-06 18:34:49 -070013subdir('proto')
Willy Tubaa8d402021-12-07 19:44:31 -080014subdir('include')
15subdir('src')
Jie Yangb988dbb2021-08-06 18:34:49 -070016
17if not get_option('tests').disabled()
18 subdir('test')
19endif