summaryrefslogtreecommitdiff
path: root/SConstruct
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2009-01-28 15:09:36 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2009-01-28 15:09:36 +0000
commitd56085060908f50be5f49021b04093596004b777 (patch)
tree857756b48bc94c9c4bf74c3ef72c96bbbe80ffaa /SConstruct
parent7e456076abb8ec0757aa0bee6054303a52e1007a (diff)
AU state handling, including changes to PathScanner so that it can now do recursive searches. Note that AU state handling is not built by default, and public binaries for OS X will not include it. If you build Ardour on OS X yourself, add AU_STATE=1 to your scons arguments
git-svn-id: svn://localhost/ardour2/branches/2.0-ongoing@4456 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'SConstruct')
-rw-r--r--SConstruct9
1 files changed, 3 insertions, 6 deletions
diff --git a/SConstruct b/SConstruct
index e7df3c76b6..1565768c0b 100644
--- a/SConstruct
+++ b/SConstruct
@@ -59,8 +59,8 @@ opts.AddOptions(
BoolOption('GPROFILE', 'Compile with support for gprofile (Developers only)', 0),
BoolOption('FREEDESKTOP', 'Install MIME type, icons and .desktop file as per the freedesktop.org spec (requires xdg-utils and shared-mime-info). "scons uninstall" removes associations in desktop database', 0),
BoolOption('TRANZPORT', 'Compile with support for Frontier Designs (if libusb is available)', 1),
- BoolOption('AUBIO', "Use Paul Brossier's aubio library for feature detection (if available)", 1)
-
+ BoolOption('AUBIO', "Use Paul Brossier's aubio library for feature detection (if available)", 1),
+ BoolOption('AUSTATE', "Build with support for AU settings & presets saving/loading", 0)
)
#----------------------------------------------------------------------
@@ -851,10 +851,7 @@ def prep_libcheck(topenv, libinfo):
GTKROOT = os.path.expanduser ('~/gtk/inst')
libinfo.Append(CPPPATH= GTKROOT + "/include", LIBPATH= GTKROOT + "/lib")
libinfo.Append(CXXFLAGS="-I" + GTKROOT + "/include", LINKFLAGS="-L" + GTKROOT + "/lib")
-
-
-
-
+
prep_libcheck(env, env)