| 72 | | opt.add_option('--debug', action='store_true', default=False, dest='debug', help="Build debuggable binaries") |
|---|
| | 72 | opt.add_option('--debug', action='store_true', default=False, dest='debug', help='Build debuggable binaries') |
|---|
| | 73 | opt.add_option('--firewire', action='store_true', default=False, help='Enable FireWire driver (FFADO)') |
|---|
| | 74 | opt.add_option('--freebob', action='store_true', default=False, help='Enable FreeBob driver') |
|---|
| | 75 | opt.add_option('--alsa', action='store_true', default=False, help='Enable ALSA driver') |
|---|
| | 116 | if Options.options.alsa and not conf.env['BUILD_DRIVER_ALSA']: |
|---|
| | 117 | conf.fatal('ALSA driver was explicitly requested but cannot be built') |
|---|
| | 118 | if Options.options.freebob and not conf.env['BUILD_DRIVER_FREEBOB']: |
|---|
| | 119 | conf.fatal('FreeBob driver was explicitly requested but cannot be built') |
|---|
| | 120 | if Options.options.firewire and not conf.env['BUILD_DRIVER_FFADO']: |
|---|
| | 121 | conf.fatal('FFADO driver was explicitly requested but cannot be built') |
|---|
| | 122 | conf.env['BUILD_DRIVER_ALSA'] = Options.options.alsa |
|---|
| | 123 | conf.env['BUILD_DRIVER_FFADO'] = Options.options.firewire |
|---|
| | 124 | conf.env['BUILD_DRIVER_FREEBOB'] = Options.options.freebob |
|---|