Changeset ec0d43c


Ignore:
Timestamp:
Nov 13, 2007, 9:58:26 AM (16 years ago)
Author:
Paul Brossier <piem@piem.org>
Branches:
feature/autosink, feature/cnn, feature/cnn_org, feature/constantq, feature/crepe, feature/crepe_org, feature/pitchshift, feature/pydocstrings, feature/timestretch, fix/ffmpeg5, master, pitchshift, sampler, timestretch, yinfft+
Children:
6f10064
Parents:
e24378a
Message:

configure.ac: add lcov flags option, beautify help output

File:
1 edited

Legend:

Unmodified
Added
Removed
  • configure.ac

    re24378a rec0d43c  
    3535dnl Enable debugging (no)
    3636AC_ARG_ENABLE(debug,
    37   [  --enable-debug[[=value]]  compile with debug [[default=no]]],
     37  AC_HELP_STRING([--enable-debug],[compile in debug mode [[default=no]]]),
    3838  with_debug="yes",
    3939  with_debug="no")
     
    4646dnl Enable full warnings (yes)
    4747AC_ARG_ENABLE(warnings,
    48   [  --enable-warnings[[=value]] compile with all gcc warnings [[default=yes]]],
     48  AC_HELP_STRING([--enable-warnings],[compile with all gcc warnings [[default=yes]]]),
    4949  with_warnme="no",
    5050  with_warnme="yes")
     
    6767fi
    6868
     69dnl fail on compilation warnings
    6970AC_ARG_ENABLE(errorfail,
    70   [  --enable-errorfail[[=value]]  fail on compilation warnings [[default=no]]],
     71  AC_HELP_STRING([--enable-errorfail],[fail on compilation warnings [[default=no]]]),
    7172  AUBIO_CFLAGS="$AUBIO_CFLAGS -Werror -Wmissing-prototypes -Wmissing-declarations -Wno-unused-parameter",
    72   with_warnme="no")
     73  with_errorfail="no")
     74
     75dnl add gcov/lcov profiling and coverage flags
     76AC_ARG_ENABLE(lcov,
     77  AC_HELP_STRING([--enable-lcov],[compile with gcov/lcov profiling flags [[default=no]]]),
     78  AUBIO_CFLAGS="$AUBIO_CFLAGS -fprofile-arcs -ftest-coverage",
     79  with_lcov="no")
    7380
    7481dnl Check for libtool
Note: See TracChangeset for help on using the changeset viewer.