John Edward Broadbent | e6ffe70 | 2021-10-14 14:03:11 -0700 | [diff] [blame] | 1 | libeStoragedErase_lib = static_library( |
| 2 | 'libeStoragedErase-lib', |
| 3 | 'verifyDriveGeometry.cpp', |
John Edward Broadbent | 7f2ab64 | 2021-11-11 21:00:38 -0800 | [diff] [blame] | 4 | 'pattern.cpp', |
John Edward Broadbent | 59dffa6 | 2022-01-13 17:41:32 -0800 | [diff] [blame] | 5 | 'cryptoErase.cpp', |
John Edward Broadbent | 605085a | 2021-11-05 13:45:45 -0700 | [diff] [blame] | 6 | 'sanitize.cpp', |
John Edward Broadbent | 4bc8a10 | 2021-12-30 16:11:49 -0800 | [diff] [blame] | 7 | 'zero.cpp', |
John Edward Broadbent | e6ffe70 | 2021-10-14 14:03:11 -0700 | [diff] [blame] | 8 | include_directories : eStoraged_headers, |
| 9 | implicit_include_directories: false, |
John Wedig | 972c3fa | 2021-12-29 17:30:41 -0800 | [diff] [blame] | 10 | dependencies: [ |
Patrick Williams | 0c2808f | 2022-02-25 09:35:14 -0600 | [diff] [blame] | 11 | phosphor_dbus_interfaces_dep, |
| 12 | phosphor_logging_dep, |
| 13 | stdplus_dep, |
John Wedig | 972c3fa | 2021-12-29 17:30:41 -0800 | [diff] [blame] | 14 | ], |
John Edward Broadbent | e6ffe70 | 2021-10-14 14:03:11 -0700 | [diff] [blame] | 15 | ) |
| 16 | |
| 17 | libeStoragedErase_dep = declare_dependency( |
| 18 | include_directories: eStoraged_headers, |
| 19 | link_with: libeStoragedErase_lib, |
| 20 | ) |
| 21 | |