mirror of
https://github.com/cookiengineer/audacity
synced 2025-04-30 23:59:41 +02:00
It's still has some work, but it successfully builds on all 3 main platforms. Some of the outstanding items include: Install target testing (mostly important for Linux) CMakeList clean up and comments Debug and Release build verification Audit of compile/link options Need a Mac signed and notarized build (and probably more)
28 lines
693 B
C
28 lines
693 B
C
/* SoX Resampler Library Copyright (c) 2007-16 robs@users.sourceforge.net
|
|
* Licence for this file: LGPL v2.1 See LICENCE for details. */
|
|
|
|
#if !defined soxr_config_included
|
|
#define soxr_config_included
|
|
|
|
#cmakedefine01 AVCODEC_FOUND
|
|
#cmakedefine01 AVUTIL_FOUND
|
|
#cmakedefine01 WITH_PFFFT
|
|
|
|
#cmakedefine01 HAVE_FENV_H
|
|
#cmakedefine01 HAVE_STDBOOL_H
|
|
#cmakedefine01 HAVE_STDINT_H
|
|
#cmakedefine01 HAVE_LRINT
|
|
#cmakedefine01 HAVE_BIGENDIAN
|
|
|
|
#cmakedefine01 WITH_CR32
|
|
#cmakedefine01 WITH_CR32S
|
|
#cmakedefine01 WITH_CR64
|
|
#cmakedefine01 WITH_CR64S
|
|
#cmakedefine01 WITH_VR32
|
|
|
|
#cmakedefine01 WITH_HI_PREC_CLOCK
|
|
#cmakedefine01 WITH_FLOAT_STD_PREC_CLOCK
|
|
#cmakedefine01 WITH_DEV_TRACE
|
|
|
|
#endif
|