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'
)
|