8bb91099c5
Avoid repeated pointless configure messages like: Checking for 'g++' (C++ compiler!) : /usr/lib64/ccache/g++ Checking for 'gcc' (C compiler) : /usr/lib64/ccache/gcc
33 lines
758 B
Python
33 lines
758 B
Python
#!/usr/bin/env python
|
|
from waflib.extras import autowaf as autowaf
|
|
import os
|
|
import sys
|
|
import re
|
|
|
|
I18N_PACKAGE = 'pulse-backend'
|
|
|
|
# Mandatory variables
|
|
top = '.'
|
|
out = 'build'
|
|
|
|
def options(opt):
|
|
autowaf.set_options(opt)
|
|
|
|
def configure(conf):
|
|
pass
|
|
|
|
def build(bld):
|
|
obj = bld(features = 'cxx cxxshlib')
|
|
obj.source = [
|
|
'pulseaudio_backend.cc',
|
|
]
|
|
obj.includes = ['.']
|
|
obj.name = 'pulseaudio_backend'
|
|
obj.target = 'pulseaudio_backend'
|
|
obj.use = 'libardour libpbd'
|
|
obj.uselib = 'PULSEAUDIO GLIBMM XML'
|
|
obj.install_path = os.path.join(bld.env['LIBDIR'], 'backends')
|
|
obj.defines = ['PACKAGE="' + I18N_PACKAGE + '"',
|
|
'ARDOURBACKEND_DLL_EXPORTS'
|
|
]
|