-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmeson_options.txt
28 lines (23 loc) · 920 Bytes
/
meson_options.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#---------------------------------------------------------------------
# vim:set expandtab:
#---------------------------------------------------------------------
# Copyright (c) 2023 James O. D. Hunt <jamesodhunt@gmail.com>
#
# SPDX-License-Identifier: Apache-2.0
#---------------------------------------------------------------------
#---------------------------------------------------------------------
# Meson build options
#---------------------------------------------------------------------
option('assembler',
type: 'combo',
choices: ['nasm', 'yasm'],
value: 'nasm',
description: 'Assembler to use')
option('tests',
type: 'boolean',
value: true,
description: 'Build the tests [default: true]')
option('extra_c_sources',
type: 'array',
description: 'Optional list of extra C sources to build with')
#---------------------------------------------------------------------