blob: dba4b570ea42b60a3ff979308ed2865730ab6603 [file] [log] [blame]
Jie Yangb988dbb2021-08-06 18:34:49 -07001project(
2 'phosphor-ipmi-blobs-binarystore',
3 'cpp',
4 version: '0.1',
Willy Tu7bae1982023-11-06 23:03:55 -08005 meson_version: '>=1.1.1',
Jie Yangb988dbb2021-08-06 18:34:49 -07006 default_options: [
Willy Tu7bae1982023-11-06 23:03:55 -08007 'cpp_std=c++23',
Jie Yangb988dbb2021-08-06 18:34:49 -07008 '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