meson.build (d130e1a3465a9b7d7d6e9166437e322b74a88f49) meson.build (f7f5da97f4172ec9b4528c9539f4d0e1eb00ae8a)
1project('pldm', ['c', 'cpp'],
2 version: '0.1', meson_version: '>=0.49.0',
3 default_options: [
4 'warning_level=3',
5 'default_library=shared',
6 'werror=true',
7 'cpp_std=c++17'
8 ])

--- 75 unchanged lines hidden (view full) ---

84configure_file(
85 copy: true,
86 input: 'pldmd/pldmd.service',
87 install: true,
88 install_dir: systemd_system_unit_dir,
89 output: 'pldmd.service',
90)
91
1project('pldm', ['c', 'cpp'],
2 version: '0.1', meson_version: '>=0.49.0',
3 default_options: [
4 'warning_level=3',
5 'default_library=shared',
6 'werror=true',
7 'cpp_std=c++17'
8 ])

--- 75 unchanged lines hidden (view full) ---

84configure_file(
85 copy: true,
86 input: 'pldmd/pldmd.service',
87 install: true,
88 install_dir: systemd_system_unit_dir,
89 output: 'pldmd.service',
90)
91
92subdir('tool')
92subdir('pldmtool')
93
94if get_option('tests').enabled()
95 subdir('test')
96endif
97
98if get_option('utilities').enabled()
99 subdir('utilities')
100endif
101
102endif # pldm-only
93
94if get_option('tests').enabled()
95 subdir('test')
96endif
97
98if get_option('utilities').enabled()
99 subdir('utilities')
100endif
101
102endif # pldm-only