mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-07 07:14:56 +01:00
modified SConstruct so libglade gets built
git-svn-id: svn://localhost/trunk/ardour2@79 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
c9f039a924
commit
49e5424126
1 changed files with 12 additions and 2 deletions
12
SConstruct
12
SConstruct
|
|
@ -378,6 +378,9 @@ libraries['pango'].ParseConfig ('pkg-config --cflags --libs pango')
|
||||||
libraries['libgnomecanvas2'] = LibraryInfo()
|
libraries['libgnomecanvas2'] = LibraryInfo()
|
||||||
libraries['libgnomecanvas2'].ParseConfig ('pkg-config --cflags --libs libgnomecanvas-2.0')
|
libraries['libgnomecanvas2'].ParseConfig ('pkg-config --cflags --libs libgnomecanvas-2.0')
|
||||||
|
|
||||||
|
libraries['glade2'] = LibraryInfo()
|
||||||
|
libraries['glade2'].ParseConfig ('pkg-config --cflags --libs libglade-2.0')
|
||||||
|
|
||||||
libraries['flowcanvas'] = LibraryInfo(LIBS='flowcanvas', LIBPATH='#/libs/flowcanvas', CPPPATH='#libs/flowcanvas')
|
libraries['flowcanvas'] = LibraryInfo(LIBS='flowcanvas', LIBPATH='#/libs/flowcanvas', CPPPATH='#libs/flowcanvas')
|
||||||
|
|
||||||
libraries['ardour'] = LibraryInfo (LIBS='ardour', LIBPATH='#libs/ardour', CPPPATH='#libs/ardour')
|
libraries['ardour'] = LibraryInfo (LIBS='ardour', LIBPATH='#libs/ardour', CPPPATH='#libs/ardour')
|
||||||
|
|
@ -418,6 +421,9 @@ if env['SYSLIBS']:
|
||||||
libraries['gtkmm2'] = LibraryInfo()
|
libraries['gtkmm2'] = LibraryInfo()
|
||||||
libraries['gtkmm2'].ParseConfig ('pkg-config --cflags --libs gtkmm-2.0')
|
libraries['gtkmm2'].ParseConfig ('pkg-config --cflags --libs gtkmm-2.0')
|
||||||
|
|
||||||
|
libraries['libglademm'] = LibraryInfo()
|
||||||
|
libraries['libglademm'].ParseConfig ('pkg-config --cflags --libs libglademm-2.4')
|
||||||
|
|
||||||
libraries['soundtouch'] = LibraryInfo(LIBS='SoundTouch')
|
libraries['soundtouch'] = LibraryInfo(LIBS='SoundTouch')
|
||||||
|
|
||||||
coredirs = [
|
coredirs = [
|
||||||
|
|
@ -463,6 +469,9 @@ else:
|
||||||
libraries['soundtouch'] = LibraryInfo(LIBS='soundtouch',
|
libraries['soundtouch'] = LibraryInfo(LIBS='soundtouch',
|
||||||
LIBPATH='#libs/soundtouch',
|
LIBPATH='#libs/soundtouch',
|
||||||
CPPPATH=['#libs', '#libs/soundtouch'])
|
CPPPATH=['#libs', '#libs/soundtouch'])
|
||||||
|
libraries['libglademm'] = LibraryInfo(LIBS='libglademm',
|
||||||
|
LIBPATH='#libs/libglademm',
|
||||||
|
CPPPATH='#libs/libglademm')
|
||||||
|
|
||||||
coredirs = [
|
coredirs = [
|
||||||
'libs/soundtouch',
|
'libs/soundtouch',
|
||||||
|
|
@ -483,10 +492,11 @@ else:
|
||||||
'libs/gtkmm2/atk',
|
'libs/gtkmm2/atk',
|
||||||
'libs/gtkmm2/gdk',
|
'libs/gtkmm2/gdk',
|
||||||
'libs/gtkmm2/gtk',
|
'libs/gtkmm2/gtk',
|
||||||
|
'libs/libglademm',
|
||||||
'libs/libgnomecanvasmm',
|
'libs/libgnomecanvasmm',
|
||||||
'libs/flowcanvas',
|
'libs/flowcanvas',
|
||||||
'libs/gtkmm2ext',
|
'libs/gtkmm2ext',
|
||||||
'gtk2_ardour',
|
'gtk2_ardour'
|
||||||
]
|
]
|
||||||
|
|
||||||
opts.Save('scache.conf', env)
|
opts.Save('scache.conf', env)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue