Patrick Williams | 5cc2093 | 2025-02-01 08:37:58 -0500 | [diff] [blame^] | 1 | option('tests', type: 'feature', value: 'enabled', description: 'Build tests') |
Matt Johnston | 6586fc1 | 2024-09-10 16:01:27 +0800 | [diff] [blame] | 2 | option( |
| 3 | 'bindings', |
| 4 | type: 'array', |
| 5 | description: 'Bindings to include', |
Matt Johnston | e5b941d | 2024-09-17 16:44:38 +0800 | [diff] [blame] | 6 | choices: ['serial', 'astlpc', 'i2c'], |
| 7 | value: ['serial', 'astlpc', 'i2c'], |
Matt Johnston | 6586fc1 | 2024-09-10 16:01:27 +0800 | [diff] [blame] | 8 | ) |
| 9 | option( |
| 10 | 'default_alloc', |
| 11 | type: 'feature', |
| 12 | description: 'Use libc malloc and free for heap memory', |
| 13 | ) |
Patrick Williams | 5cc2093 | 2025-02-01 08:37:58 -0500 | [diff] [blame^] | 14 | option('stdio', type: 'feature', description: 'Support logging to stdio') |
Matt Johnston | 6586fc1 | 2024-09-10 16:01:27 +0800 | [diff] [blame] | 15 | option( |
| 16 | 'fileio', |
| 17 | type: 'feature', |
| 18 | description: 'Support interfaces based on file-descriptors', |
| 19 | ) |
Patrick Williams | 5cc2093 | 2025-02-01 08:37:58 -0500 | [diff] [blame^] | 20 | option('syslog', type: 'feature', description: 'Support logging to syslog') |
Matt Johnston | bbfcc6e | 2024-09-17 16:48:15 +0800 | [diff] [blame] | 21 | option( |
| 22 | 'custom_alloc', |
| 23 | type: 'boolean', |
| 24 | value: false, |
| 25 | description: 'Use fixed application-provided allocators', |
| 26 | ) |
Matt Johnston | 1250727 | 2024-10-01 12:17:19 +0800 | [diff] [blame] | 27 | option( |
| 28 | 'nolog', |
| 29 | type: 'boolean', |
| 30 | value: false, |
| 31 | description: 'Don\'t include any logging functionality', |
| 32 | ) |
Matt Johnston | 4058b2c | 2024-11-07 14:53:50 +0800 | [diff] [blame] | 33 | option( |
| 34 | 'control', |
| 35 | type: 'boolean', |
| 36 | value: true, |
| 37 | description: 'Include MCTP control protocol handler', |
| 38 | ) |