diff options
author | Bent Bisballe Nyeng <deva@aasimon.org> | 2013-09-15 09:28:15 +0200 |
---|---|---|
committer | Bent Bisballe Nyeng <deva@aasimon.org> | 2013-09-15 09:28:15 +0200 |
commit | 22e8c588324184b777cea9f55ec0fc73b56949b8 (patch) | |
tree | cb75167772447848650d90b01c171b344cdc61e3 /configure.in | |
parent | 9883fb4fc232ebdea44dcf7b015499d31f999695 (diff) |
New experimental sample selector (enable using --with-experimental argument on ./configure).
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/configure.in b/configure.in index cb3c99a..f25441e 100644 --- a/configure.in +++ b/configure.in @@ -30,6 +30,12 @@ if test x$with_debug == xyes; then fi CXXFLAGS="$CXXFLAGS $HUGIN_PARM" +AC_ARG_WITH(experimental, [ --with-experimental Build with experimental features]) +if test x$with_experimental == xyes; then + AC_MSG_WARN([*** Building with experimental support!]) + CXXFLAGS="$CXXFLAGS -DEXPERIMENTAL" +fi + dnl ====================== dnl Compile LV2 plugin dnl ====================== |