blob: 5de0aaacc920f0b7180356deb3b5e90c5233af4f [file] [log] [blame]
John Wedig2098dab2021-09-14 13:56:28 -07001
2eStoraged_headers = include_directories('.')
John Edward Broadbente6ffe702021-10-14 14:03:11 -07003
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
Patrick Williams9c2e8362025-02-01 08:38:10 -050011configure_file(output: 'estoraged_conf.hpp', configuration: conf_data)