xref: /openbmc/estoraged/include/meson.build (revision 620d1a51)
1
2eStoraged_headers = include_directories('.')
3
4conf_data = configuration_data()
5# If the number of drives increases we plan to switch to a config file design
6# in which, the max and min size are read and parsed for a config file at
7# verification time.
8conf_data.set('ERASE_MAX_GEOMETRY', get_option('erase_max_geometry'))
9conf_data.set('ERASE_MIN_GEOMETRY', get_option('erase_min_geometry'))
10
11configure_file(
12  output: 'estoraged_conf.hpp',
13  configuration: conf_data)
14