mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-23 07:06:23 +01:00
Fix Python whitespace (follow PEP8 guidelines, reformatted by Python Reindent)
git-svn-id: svn://localhost/ardour2/branches/3.0@9409 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
57bf3cf063
commit
4769db412d
33 changed files with 1700 additions and 1728 deletions
|
|
@ -23,57 +23,56 @@ blddir = 'build'
|
|||
path_prefix = 'libs/taglib/'
|
||||
|
||||
def set_options(opt):
|
||||
autowaf.set_options(opt)
|
||||
autowaf.set_options(opt)
|
||||
|
||||
def configure(conf):
|
||||
autowaf.configure(conf)
|
||||
conf.check_tool('compiler_cxx')
|
||||
autowaf.configure(conf)
|
||||
conf.check_tool('compiler_cxx')
|
||||
|
||||
def build(bld):
|
||||
# Library
|
||||
obj = bld.new_task_gen('cxx', 'shlib')
|
||||
sources = glob.glob(path_prefix + 'taglib/*.cpp')
|
||||
sources += glob.glob(path_prefix + 'taglib/flac/*.cpp')
|
||||
sources += glob.glob(path_prefix + 'taglib/mpc/*.cpp')
|
||||
sources += glob.glob(path_prefix + 'taglib/mpeg/*.cpp')
|
||||
sources += glob.glob(path_prefix + 'taglib/mpeg/id3v1/*.cpp')
|
||||
sources += glob.glob(path_prefix + 'taglib/mpeg/id3v2/*.cpp')
|
||||
sources += glob.glob(path_prefix + 'taglib/mpeg/id3v2/frames/*.cpp')
|
||||
sources += glob.glob(path_prefix + 'taglib/ogg/*.cpp')
|
||||
sources += glob.glob(path_prefix + 'taglib/ogg/vorbis/*.cpp')
|
||||
sources += glob.glob(path_prefix + 'taglib/ogg/speex/*.cpp')
|
||||
sources += glob.glob(path_prefix + 'taglib/ogg/flac/*.cpp')
|
||||
sources += glob.glob(path_prefix + 'taglib/trueaudio/*.cpp')
|
||||
sources += glob.glob(path_prefix + 'taglib/wavpack/*.cpp')
|
||||
sources += glob.glob(path_prefix + 'taglib/ape/*.cpp')
|
||||
sources += glob.glob(path_prefix + 'taglib/toolkit/*.cpp')
|
||||
obj.source = []
|
||||
for i in sources:
|
||||
obj.source += [ i.replace(path_prefix, '') ]
|
||||
# Library
|
||||
obj = bld.new_task_gen('cxx', 'shlib')
|
||||
sources = glob.glob(path_prefix + 'taglib/*.cpp')
|
||||
sources += glob.glob(path_prefix + 'taglib/flac/*.cpp')
|
||||
sources += glob.glob(path_prefix + 'taglib/mpc/*.cpp')
|
||||
sources += glob.glob(path_prefix + 'taglib/mpeg/*.cpp')
|
||||
sources += glob.glob(path_prefix + 'taglib/mpeg/id3v1/*.cpp')
|
||||
sources += glob.glob(path_prefix + 'taglib/mpeg/id3v2/*.cpp')
|
||||
sources += glob.glob(path_prefix + 'taglib/mpeg/id3v2/frames/*.cpp')
|
||||
sources += glob.glob(path_prefix + 'taglib/ogg/*.cpp')
|
||||
sources += glob.glob(path_prefix + 'taglib/ogg/vorbis/*.cpp')
|
||||
sources += glob.glob(path_prefix + 'taglib/ogg/speex/*.cpp')
|
||||
sources += glob.glob(path_prefix + 'taglib/ogg/flac/*.cpp')
|
||||
sources += glob.glob(path_prefix + 'taglib/trueaudio/*.cpp')
|
||||
sources += glob.glob(path_prefix + 'taglib/wavpack/*.cpp')
|
||||
sources += glob.glob(path_prefix + 'taglib/ape/*.cpp')
|
||||
sources += glob.glob(path_prefix + 'taglib/toolkit/*.cpp')
|
||||
obj.source = []
|
||||
for i in sources:
|
||||
obj.source += [ i.replace(path_prefix, '') ]
|
||||
|
||||
include_dirs = '''
|
||||
taglib
|
||||
taglib/toolkit
|
||||
taglib/flac
|
||||
taglib/ape
|
||||
taglib/mpc
|
||||
taglib/mpeg
|
||||
taglib/mpeg/id3v1
|
||||
taglib/mpeg/id3v2
|
||||
taglib/wavpack
|
||||
taglib/trueaudio
|
||||
taglib/ogg
|
||||
taglib/ogg/vorbis
|
||||
taglib/ogg/speex
|
||||
taglib/ogg/flac
|
||||
'''.split()
|
||||
obj.export_incdirs = ['.', 'taglib', 'taglib/toolkit']
|
||||
obj.includes = include_dirs
|
||||
obj.name = 'libtaglib'
|
||||
obj.target = 'taglib'
|
||||
obj.vnum = LIBTAGLIB_LIB_VERSION
|
||||
obj.install_path = os.path.join(bld.env['LIBDIR'], 'ardour3')
|
||||
include_dirs = '''
|
||||
taglib
|
||||
taglib/toolkit
|
||||
taglib/flac
|
||||
taglib/ape
|
||||
taglib/mpc
|
||||
taglib/mpeg
|
||||
taglib/mpeg/id3v1
|
||||
taglib/mpeg/id3v2
|
||||
taglib/wavpack
|
||||
taglib/trueaudio
|
||||
taglib/ogg
|
||||
taglib/ogg/vorbis
|
||||
taglib/ogg/speex
|
||||
taglib/ogg/flac
|
||||
'''.split()
|
||||
obj.export_incdirs = ['.', 'taglib', 'taglib/toolkit']
|
||||
obj.includes = include_dirs
|
||||
obj.name = 'libtaglib'
|
||||
obj.target = 'taglib'
|
||||
obj.vnum = LIBTAGLIB_LIB_VERSION
|
||||
obj.install_path = os.path.join(bld.env['LIBDIR'], 'ardour3')
|
||||
|
||||
def shutdown():
|
||||
autowaf.shutdown()
|
||||
|
||||
autowaf.shutdown()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue