File: meson_options.txt

package info (click to toggle)
python-rtmidi 1.5.8-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,248 kB
  • sloc: cpp: 4,228; python: 2,853; makefile: 287; sh: 109; ansic: 19
file content (35 lines) | stat: -rw-r--r-- 801 bytes parent folder | download
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
29
30
31
32
33
34
35
option('alsa',
    type: 'boolean',
    value: true,
    description: 'Enable ALSA MIDI support'
)
option('coremidi',
    type: 'boolean',
    value: true,
    description: 'Enable CoreMIDI support'
)
option('jack',
    type: 'boolean',
    value: true,
    description: 'Enable JACK MIDI support'
)
option('python',
    type: 'string',
    value: 'python3',
    description: 'Set name (or path) of Python interpreter'
)
option('verbose',
    type: 'boolean',
    value: false,
    description: 'Turn on debug logging (for development)'
)
option('wheel',
    type: 'boolean',
    value: false,
    description: 'Turn on build mode for creating a Python wheel (should not be used directly)'
)
option('winmm',
    type: 'boolean',
    value: true,
    description: 'Enable Windows MultiMedia support'
)