1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
| | # SPDX-License-Identifier: EUPL-1.2+
# SPDX-FileCopyrightText: 2022-2024 Alyssa Ross <hi@alyssa.is>
option('host', type : 'boolean', value : false,
description : 'Build tools for the Spectrum host')
option('app', type : 'boolean',
description : 'Build tools for Spectrum app VMs')
option('driver', type : 'boolean', value : false,
description : 'Build tools for Spectrum driver VMs')
option('hostfsrootdir', type : 'string', value : '/run/host',
description : 'Path where the virtio-fs provided by the host will be mounted')
option('tests',
type : 'boolean',
description : 'Build tests')
option('unwind',
type : 'boolean',
description : 'Build Rust code with -C panic=unwind')
|