blob: 151493b691311028b279d1ee2e087d3d22df15fa [file] [log] [blame]
Willy Tuc710b972021-08-11 16:33:43 -07001install_subdir(
2 'dbus-sdr',
3 install_dir: get_option('includedir'),
4 strip_directory: false,
5 exclude_files: '*.cpp')
6
7install_subdir(
8 'ipmid',
9 install_dir: get_option('includedir'),
10 strip_directory: false,
11 exclude_files: '*.cpp')
12
13install_subdir(
14 'ipmid-host',
15 install_dir: get_option('includedir'),
16 strip_directory: false,
17 exclude_files: '*.cpp')
18
19# Eventually we will split <ipmid/*> and <host-ipmid/*> headers
20# For now they will be the same during migration
21install_data(
22 'ipmid/iana.hpp',
23 'ipmid/api.h',
24 'ipmid/oemopenbmc.hpp',
25 'ipmid/oemrouter.hpp',
26 'ipmid-host/cmd.hpp',
27 'ipmid-host/cmd-utils.hpp',
28 install_dir: get_option('includedir') / 'host-ipmid',
29 rename: [
30 'iana.hpp',
31 'ipmid-api.h',
32 'oemopenbmc.hpp',
33 'oemrouter.hpp',
34 'ipmid-host-cmd.hpp',
35 'ipmid-host-cmd-utils.hpp',
36 ])