John Wedig | 2098dab | 2021-09-14 13:56:28 -0700 | [diff] [blame] | 1 | |
| 2 | eStoraged_headers = include_directories('.') |
John Edward Broadbent | e6ffe70 | 2021-10-14 14:03:11 -0700 | [diff] [blame] | 3 | |
| 4 | conf_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. |
| 8 | conf_data.set('ERASE_MAX_GEOMETRY', get_option('erase_max_geometry')) |
| 9 | conf_data.set('ERASE_MIN_GEOMETRY', get_option('erase_min_geometry')) |
| 10 | |
| 11 | configure_file( |
| 12 | output: 'estoraged_conf.hpp', |
| 13 | configuration: conf_data) |