summaryrefslogtreecommitdiff
path: root/SConstruct
diff options
context:
space:
mode:
authorTim Mayberry <mojofunk@gmail.com>2006-03-07 06:23:12 +0000
committerTim Mayberry <mojofunk@gmail.com>2006-03-07 06:23:12 +0000
commit874ba08fb4f3c620357c7a76e6eb5f2ed651ec6b (patch)
tree62f9442daeb35ab2fe215213f8b1f049fd1086a3 /SConstruct
parent17f7ab67adc7152ee5879ede02dfddfc0a1296cb (diff)
2006-03-04 Tim Mayberry <mojofunk@gmail.com>
* Enable linking to system soundtouch library if SYSLIBS=1, soundtouch-1.3.1 needed for pkgconfig support * Fix to allow compiling against libgnomecanvasmm library when SYSLIBS=1 git-svn-id: svn://localhost/trunk/ardour2@354 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'SConstruct')
-rw-r--r--SConstruct7
1 files changed, 3 insertions, 4 deletions
diff --git a/SConstruct b/SConstruct
index 2626554fff..c7378dcd70 100644
--- a/SConstruct
+++ b/SConstruct
@@ -435,11 +435,10 @@ if env['SYSLIBS']:
libraries['libglademm'].ParseConfig ('pkg-config --cflags --libs libglademm-2.4')
# libraries['flowcanvas'] = LibraryInfo(LIBS='flowcanvas', LIBPATH='#/libs/flowcanvas', CPPPATH='#libs/flowcanvas')
- libraries['soundtouch'] = LibraryInfo(LIBS='soundtouch',
- LIBPATH='#libs/soundtouch',
- CPPPATH=['#libs', '#libs/soundtouch'])
+ libraries['soundtouch'] = LibraryInfo()
+ libraries['soundtouch'].ParseConfig ('pkg-config --cflags --libs soundtouch-1.0')
+
coredirs = [
- 'libs/soundtouch',
'templates'
]