mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-15 19:16:40 +01:00
Indent python files with spaces as per style guide.
git-svn-id: svn://localhost/ardour2/branches/3.0@9158 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
b9113772fe
commit
9850407bd9
30 changed files with 2816 additions and 2816 deletions
|
|
@ -42,26 +42,26 @@ 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 = ['.']
|
||||
# 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')
|
||||
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