blob: 8da9f476a11fec95ecc1845f7fcad496be35b388 [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')
Willy Tu7f107802023-11-06 23:05:25 -080016subdir('service')
Jie Yangb988dbb2021-08-06 18:34:49 -070017
18if not get_option('tests').disabled()
19 subdir('test')
20endif