mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-24 07:27:44 +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
|
|
@ -42,26 +42,25 @@ libgnomecanvas_sources = [
|
|||
]
|
||||
|
||||
def set_options(opt):
|
||||
autowaf.set_options(opt)
|
||||
autowaf.set_options(opt)
|
||||
|
||||
def configure(conf):
|
||||
autowaf.configure(conf)
|
||||
conf.check_tool('compiler_cc')
|
||||
autowaf.check_pkg(conf, 'gtk+-2.0', uselib_store='GTK', atleast_version='2.18')
|
||||
autowaf.check_pkg(conf, 'libart-2.0', uselib_store='LIBART', atleast_version='2.3')
|
||||
autowaf.configure(conf)
|
||||
conf.check_tool('compiler_cc')
|
||||
autowaf.check_pkg(conf, 'gtk+-2.0', uselib_store='GTK', atleast_version='2.18')
|
||||
autowaf.check_pkg(conf, 'libart-2.0', uselib_store='LIBART', atleast_version='2.3')
|
||||
|
||||
def build(bld):
|
||||
# Library
|
||||
obj = bld.new_task_gen('cc', 'shlib')
|
||||
obj.source = libgnomecanvas_sources
|
||||
obj.export_incdirs = ['.']
|
||||
obj.includes = ['.']
|
||||
obj.name = 'libgnomecanvas-2'
|
||||
obj.target = 'gnomecanvas-2'
|
||||
obj.uselib = 'GLIB GTK LIBART'
|
||||
obj.vnum = LIBGNOMECANVAS_LIB_VERSION
|
||||
obj.install_path = os.path.join(bld.env['LIBDIR'], 'ardour3')
|
||||
# Library
|
||||
obj = bld.new_task_gen('cc', 'shlib')
|
||||
obj.source = libgnomecanvas_sources
|
||||
obj.export_incdirs = ['.']
|
||||
obj.includes = ['.']
|
||||
obj.name = 'libgnomecanvas-2'
|
||||
obj.target = 'gnomecanvas-2'
|
||||
obj.uselib = 'GLIB GTK LIBART'
|
||||
obj.vnum = LIBGNOMECANVAS_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