| Patrick Williams | c4589e0 | 2025-02-01 08:38:32 -0500 | [diff] [blame] | 1 | option( |
| 2 | 'abi', |
| 3 | type: 'array', |
| 4 | description: 'Constrain exposed symbol classes', |
| 5 | choices: ['deprecated', 'stable', 'testing'], |
| 6 | value: ['deprecated', 'stable', 'testing'], |
| 7 | ) |
| 8 | option( |
| 9 | 'abi-compliance-check', |
| 10 | type: 'boolean', |
| 11 | description: 'Detect public ABI/API changes', |
| Chau Ly | aa0aeda | 2025-09-19 09:30:51 +0930 | [diff] [blame^] | 12 | value: false, |
| Patrick Williams | c4589e0 | 2025-02-01 08:38:32 -0500 | [diff] [blame] | 13 | ) |
| 14 | option( |
| 15 | 'oem', |
| 16 | type: 'array', |
| 17 | description: 'Enable OEM PLDM extensions', |
| 18 | choices: ['ibm', 'meta'], |
| 19 | value: ['ibm', 'meta'], |
| 20 | ) |
| Andrew Jeffery | 65c6409 | 2024-11-29 11:52:13 +1030 | [diff] [blame] | 21 | option('tests', type: 'boolean', description: 'Build tests') |
| Patrick Williams | c4589e0 | 2025-02-01 08:38:32 -0500 | [diff] [blame] | 22 | option( |
| 23 | 'transport', |
| 24 | type: 'boolean', |
| 25 | description: 'Enable transport implementation', |
| 26 | ) |
| Matt Johnston | c127a01 | 2025-06-20 17:49:19 +0800 | [diff] [blame] | 27 | option( |
| 28 | 'tools', |
| 29 | type: 'array', |
| 30 | description: 'Tools to build with the library', |
| 31 | choices: ['pd'], |
| 32 | value: ['pd'], |
| 33 | ) |