blob: 6f9c3c520ebb1af3a7a70e08ecf80911a27327cf [file] [log] [blame]
William A. Kennington III362d0872021-05-11 14:00:02 -07001project(
2 'kcsbridge',
3 'cpp',
4 version: '0.1',
5 meson_version: '>=0.57.0',
6 default_options: [
7 'warning_level=3',
8 'cpp_std=c++20',
9 ])
10
William A. Kennington III1cbb5842021-05-11 14:14:57 -070011subdir('src')
William A. Kennington III362d0872021-05-11 14:00:02 -070012
13systemd = dependency('systemd')
14if systemd.found()
15 install_data(
16 'phosphor-ipmi-kcs@.service',
17 install_dir: systemd.get_variable(pkgconfig: 'systemdsystemunitdir'))
18endif