| 56 | | BoolOption( "PROFILE", "Build with symbols and other profiling info", False ), |
|---|
| 57 | | PathOption( "PREFIX", "The prefix where ffado will be installed to.", "/usr/local", PathOption.PathAccept ), |
|---|
| 58 | | PathOption( "BINDIR", "Overwrite the directory where apps are installed to.", "$PREFIX/bin", PathOption.PathAccept ), |
|---|
| 59 | | PathOption( "LIBDIR", "Overwrite the directory where libs are installed to.", "$PREFIX/lib", PathOption.PathAccept ), |
|---|
| 60 | | PathOption( "INCLUDEDIR", "Overwrite the directory where headers are installed to.", "$PREFIX/include", PathOption.PathAccept ), |
|---|
| 61 | | PathOption( "SHAREDIR", "Overwrite the directory where misc shared files are installed to.", "$PREFIX/share/libffado", PathOption.PathAccept ), |
|---|
| 62 | | BoolOption( "ENABLE_BEBOB", "Enable/Disable the bebob part.", True ), |
|---|
| 63 | | BoolOption( "ENABLE_FIREWORKS", "Enable/Disable the ECHO Audio FireWorks AV/C part.", True ), |
|---|
| 64 | | BoolOption( "ENABLE_OXFORD", "Enable/Disable support for the Oxford Semiconductor AV/C platform.", True ), |
|---|
| 65 | | BoolOption( "ENABLE_MOTU", "Enable/Disable the MOTU part.", True ), |
|---|
| 66 | | BoolOption( "ENABLE_DICE", "Enable/Disable the DICE part.", True ), |
|---|
| 67 | | BoolOption( "ENABLE_METRIC_HALO", "Enable/Disable the Metric Halo part.", False ), |
|---|
| 68 | | BoolOption( "ENABLE_RME", "Enable/Disable the RME part.", False ), |
|---|
| 69 | | #BoolOption( "ENABLE_BOUNCE", "Enable/Disable the BOUNCE part.", False ), |
|---|
| 70 | | BoolOption( "ENABLE_GENERICAVC", """\ |
|---|
| | 56 | BoolVariable( "PROFILE", "Build with symbols and other profiling info", False ), |
|---|
| | 57 | PathVariable( "PREFIX", "The prefix where ffado will be installed to.", "/usr/local", PathVariable.PathAccept ), |
|---|
| | 58 | PathVariable( "BINDIR", "Overwrite the directory where apps are installed to.", "$PREFIX/bin", PathVariable.PathAccept ), |
|---|
| | 59 | PathVariable( "LIBDIR", "Overwrite the directory where libs are installed to.", "$PREFIX/lib", PathVariable.PathAccept ), |
|---|
| | 60 | PathVariable( "INCLUDEDIR", "Overwrite the directory where headers are installed to.", "$PREFIX/include", PathVariable.PathAccept ), |
|---|
| | 61 | PathVariable( "SHAREDIR", "Overwrite the directory where misc shared files are installed to.", "$PREFIX/share/libffado", PathVariable.PathAccept ), |
|---|
| | 62 | BoolVariable( "ENABLE_BEBOB", "Enable/Disable the bebob part.", True ), |
|---|
| | 63 | BoolVariable( "ENABLE_FIREWORKS", "Enable/Disable the ECHO Audio FireWorks AV/C part.", True ), |
|---|
| | 64 | BoolVariable( "ENABLE_OXFORD", "Enable/Disable support for the Oxford Semiconductor AV/C platform.", True ), |
|---|
| | 65 | BoolVariable( "ENABLE_MOTU", "Enable/Disable the MOTU part.", True ), |
|---|
| | 66 | BoolVariable( "ENABLE_DICE", "Enable/Disable the DICE part.", True ), |
|---|
| | 67 | BoolVariable( "ENABLE_METRIC_HALO", "Enable/Disable the Metric Halo part.", False ), |
|---|
| | 68 | BoolVariable( "ENABLE_RME", "Enable/Disable the RME part.", False ), |
|---|
| | 69 | #BoolVariable( "ENABLE_BOUNCE", "Enable/Disable the BOUNCE part.", False ), |
|---|
| | 70 | BoolVariable( "ENABLE_GENERICAVC", """\ |
|---|
| 81 | | BoolOption( "BUILD_STATIC_TOOLS", "Build a statically linked version of the FFADO tools.", False ), |
|---|
| 82 | | EnumOption('DIST_TARGET', 'Build target for cross compiling packagers', 'auto', allowed_values=('auto', 'i386', 'i686', 'x86_64', 'powerpc', 'powerpc64', 'none' ), ignorecase=2), |
|---|
| 83 | | BoolOption( "ENABLE_OPTIMIZATIONS", "Enable optimizations and the use of processor specific extentions (MMX/SSE/...).", False ), |
|---|
| 84 | | BoolOption( "PEDANTIC", "Enable -Werror and more pedantic options during compile.", False ), |
|---|
| | 81 | BoolVariable( "BUILD_STATIC_TOOLS", "Build a statically linked version of the FFADO tools.", False ), |
|---|
| | 82 | EnumVariable('DIST_TARGET', 'Build target for cross compiling packagers', 'auto', allowed_values=('auto', 'i386', 'i686', 'x86_64', 'powerpc', 'powerpc64', 'none' ), ignorecase=2), |
|---|
| | 83 | BoolVariable( "ENABLE_OPTIMIZATIONS", "Enable optimizations and the use of processor specific extentions (MMX/SSE/...).", False ), |
|---|
| | 84 | BoolVariable( "PEDANTIC", "Enable -Werror and more pedantic options during compile.", False ), |
|---|