blob: 1e5225c433c7fb95bcfde075dd6604fee159be2b [file] [log] [blame]
Jie Yangb988dbb2021-08-06 18:34:49 -07001project(
2 'phosphor-ipmi-blobs-binarystore',
William A. Kennington III7e145862024-02-01 15:56:33 -08003 ['cpp', 'c'],
Jie Yangb988dbb2021-08-06 18:34:49 -07004 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',
William A. Kennington III7e145862024-02-01 15:56:33 -08008 'c_std=c18',
Jie Yangb988dbb2021-08-06 18:34:49 -07009 'warning_level=3',
10 'werror=true',
11 ]
12)
13
Jie Yangb988dbb2021-08-06 18:34:49 -070014subdir('proto')
Willy Tubaa8d402021-12-07 19:44:31 -080015subdir('include')
16subdir('src')
Willy Tu7f107802023-11-06 23:05:25 -080017subdir('service')
Jie Yangb988dbb2021-08-06 18:34:49 -070018
19if not get_option('tests').disabled()
20 subdir('test')
21endif