Integre la library C libsoxr

This commit is contained in:
2025-09-09 21:15:53 +02:00
parent e292054422
commit 3587c62c73
307 changed files with 32396 additions and 342 deletions

BIN
.DS_Store vendored

Binary file not shown.

6
.gitignore vendored
View File

@@ -3,10 +3,14 @@
/vendor/
**/*.log
**/*.old
**/*.o
**/*.o.d
**/*.a
xxx
/dcai/
***/.pmomusic.yml
***/.pmomusic_covers/***
***/.DS_Strore/***
.DS_Strore/***
.pmomusic_covers/***
.pmomusic_covers/***
C/src/soxr-0.1.3/Release/tests

BIN
C/.DS_Store vendored Normal file

Binary file not shown.

78
C/include/soxr-lsr.h Normal file
View File

@@ -0,0 +1,78 @@
/* SoX Resampler Library Copyright (c) 2007-18 robs@users.sourceforge.net
*
* This library is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation; either version 2.1 of the License, or (at
* your option) any later version.
*
* This library is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser
* General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this library; if not, write to the Free Software Foundation,
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
/* Wrapper compatible with `libsamplerate' (constant-rate).
* (Libsoxr's native API can be found in soxr.h). */
#if !defined SAMPLERATE_H
#define SAMPLERATE_H
#if defined __cplusplus
extern "C" {
#endif
#if defined SOXR_DLL
#if defined soxr_lsr_EXPORTS
#define SOXR __declspec(dllexport)
#else
#define SOXR __declspec(dllimport)
#endif
#elif defined SOXR_VISIBILITY && defined __GNUC__ && (__GNUC__ > 4 || __GNUC__ == 4 && __GNUC_MINOR__ >= 1)
#define SOXR __attribute__ ((visibility("default")))
#else
#define SOXR
#endif
typedef float SRC_SAMPLE;
enum SRC_SRCTYPE_e {SRC_SINC_BEST_QUALITY, SRC_SINC_MEDIUM_QUALITY,
SRC_SINC_FASTEST, SRC_ZERO_ORDER_HOLD, SRC_LINEAR};
typedef int SRC_SRCTYPE;
typedef int SRC_ERROR;
typedef long (* src_callback_t)(void *, SRC_SAMPLE * *);
typedef struct soxr SRC_STATE;
typedef struct SRC_DATA {
SRC_SAMPLE * data_in, * data_out;
long input_frames, output_frames;
long input_frames_used, output_frames_gen;
int end_of_input;
double src_ratio;
} SRC_DATA;
SOXR SRC_STATE * src_new(SRC_SRCTYPE, int num_channels, SRC_ERROR *);
SOXR SRC_ERROR src_process (SRC_STATE *, SRC_DATA *);
SOXR SRC_ERROR src_set_ratio(SRC_STATE *, double);
SOXR SRC_ERROR src_reset (SRC_STATE *);
SOXR SRC_ERROR src_error (SRC_STATE *);
SOXR SRC_STATE * src_delete (SRC_STATE *);
SOXR SRC_STATE * src_callback_new(
src_callback_t, SRC_SRCTYPE, int, SRC_ERROR *, void *);
SOXR long src_callback_read(
SRC_STATE *, double src_ratio, long, SRC_SAMPLE *);
SOXR SRC_ERROR src_simple(SRC_DATA *, SRC_SRCTYPE, int);
SOXR char const * src_get_name(SRC_SRCTYPE);
SOXR char const * src_get_description(SRC_SRCTYPE);
SOXR char const * src_get_version(void);
SOXR char const * src_strerror(SRC_ERROR);
SOXR int src_is_valid_ratio(double);
SOXR void src_short_to_float_array(short const *, float *, int);
SOXR void src_float_to_short_array(float const *, short *, int);
SOXR void src_int_to_float_array(int const *, float *, int);
SOXR void src_float_to_int_array(float const *, int *, int);
#undef SOXR
#if defined __cplusplus
}
#endif
#endif

344
C/include/soxr.h Normal file
View File

@@ -0,0 +1,344 @@
/* SoX Resampler Library Copyright (c) 2007-18 robs@users.sourceforge.net
*
* This library is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation; either version 2.1 of the License, or (at
* your option) any later version.
*
* This library is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser
* General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this library; if not, write to the Free Software Foundation,
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
/* -------------------------------- Gubbins --------------------------------- */
#if !defined soxr_included
#define soxr_included
#if defined __cplusplus
#include <cstddef>
extern "C" {
#else
#include <stddef.h>
#endif
#if defined SOXR_DLL
#if defined soxr_EXPORTS
#define SOXR __declspec(dllexport)
#else
#define SOXR __declspec(dllimport)
#endif
#elif defined SOXR_VISIBILITY && defined __GNUC__ && (__GNUC__ > 4 || __GNUC__ == 4 && __GNUC_MINOR__ >= 1)
#define SOXR __attribute__ ((visibility("default")))
#else
#define SOXR
#endif
typedef struct soxr_io_spec soxr_io_spec_t;
typedef struct soxr_quality_spec soxr_quality_spec_t;
typedef struct soxr_runtime_spec soxr_runtime_spec_t;
/* ---------------------------- API conventions --------------------------------
Buffer lengths (and occupancies) are expressed as the number of contained
samples per channel.
Parameter names for buffer lengths have the suffix `len'.
A single-character `i' or 'o' is often used in names to give context as
input or output (e.g. ilen, olen). */
/* --------------------------- Version management --------------------------- */
/* E.g. #if SOXR_THIS_VERSION >= SOXR_VERSION(0,1,1) ... */
#define SOXR_VERSION(x,y,z) (((x)<<16)|((y)<<8)|(z))
#define SOXR_THIS_VERSION SOXR_VERSION(0,1,3)
#define SOXR_THIS_VERSION_STR "0.1.3"
/* --------------------------- Type declarations ---------------------------- */
typedef struct soxr * soxr_t; /* A resampler for 1 or more channels. */
typedef char const * soxr_error_t; /* 0:no-error; non-0:error. */
typedef void * soxr_buf_t; /* 1 buffer of channel-interleaved samples. */
typedef void const * soxr_cbuf_t; /* Ditto; read-only. */
typedef soxr_buf_t const * soxr_bufs_t;/* Or, a separate buffer for each ch. */
typedef soxr_cbuf_t const * soxr_cbufs_t; /* Ditto; read-only. */
typedef void const * soxr_in_t; /* Either a soxr_cbuf_t or soxr_cbufs_t,
depending on itype in soxr_io_spec_t. */
typedef void * soxr_out_t; /* Either a soxr_buf_t or soxr_bufs_t,
depending on otype in soxr_io_spec_t. */
/* --------------------------- API main functions --------------------------- */
SOXR char const * soxr_version(void); /* Query library version: "libsoxr-x.y.z" */
#define soxr_strerror(e) /* Soxr counterpart to strerror. */ \
((e)?(e):"no error")
/* Create a stream resampler: */
SOXR soxr_t soxr_create(
double input_rate, /* Input sample-rate. */
double output_rate, /* Output sample-rate. */
unsigned num_channels, /* Number of channels to be used. */
/* All following arguments are optional (may be set to NULL). */
soxr_error_t *, /* To report any error during creation. */
soxr_io_spec_t const *, /* To specify non-default I/O formats. */
soxr_quality_spec_t const *, /* To specify non-default resampling quality.*/
soxr_runtime_spec_t const *);/* To specify non-default runtime resources.
Default io_spec is per soxr_io_spec(SOXR_FLOAT32_I, SOXR_FLOAT32_I)
Default quality_spec is per soxr_quality_spec(SOXR_HQ, 0)
Default runtime_spec is per soxr_runtime_spec(1) */
/* If not using an app-supplied input function, after creating a stream
* resampler, repeatedly call: */
SOXR soxr_error_t soxr_process(
soxr_t resampler, /* As returned by soxr_create. */
/* Input (to be resampled): */
soxr_in_t in, /* Input buffer(s); may be NULL (see below). */
size_t ilen, /* Input buf. length (samples per channel). */
size_t * idone, /* To return actual # samples used (<= ilen). */
/* Output (resampled): */
soxr_out_t out, /* Output buffer(s).*/
size_t olen, /* Output buf. length (samples per channel). */
size_t * odone); /* To return actual # samples out (<= olen).
Note that no special meaning is associated with ilen or olen equal to
zero. End-of-input (i.e. no data is available nor shall be available)
may be indicated by seting `in' to NULL. */
/* If using an app-supplied input function, it must look and behave like this:*/
typedef size_t /* data_len */
(* soxr_input_fn_t)( /* Supply data to be resampled. */
void * input_fn_state, /* As given to soxr_set_input_fn (below). */
soxr_in_t * data, /* Returned data; see below. N.B. ptr to ptr(s)*/
size_t requested_len); /* Samples per channel, >= returned data_len.
data_len *data Indicates Meaning
------- ------- ------------ -------------------------
!=0 !=0 Success *data contains data to be
input to the resampler.
0 !=0 (or End-of-input No data is available nor
not set) shall be available.
0 0 Failure An error occurred whilst trying to
source data to be input to the resampler. */
/* and be registered with a previously created stream resampler using: */
SOXR soxr_error_t soxr_set_input_fn(/* Set (or reset) an input function.*/
soxr_t resampler, /* As returned by soxr_create. */
soxr_input_fn_t, /* Function to supply data to be resampled.*/
void * input_fn_state, /* If needed by the input function. */
size_t max_ilen); /* Maximum value for input fn. requested_len.*/
/* then repeatedly call: */
SOXR size_t /*odone*/ soxr_output(/* Resample and output a block of data.*/
soxr_t resampler, /* As returned by soxr_create. */
soxr_out_t data, /* App-supplied buffer(s) for resampled data.*/
size_t olen); /* Amount of data to output; >= odone. */
/* Common stream resampler operations: */
SOXR soxr_error_t soxr_error(soxr_t); /* Query error status. */
SOXR size_t * soxr_num_clips(soxr_t); /* Query int. clip counter (for R/W). */
SOXR double soxr_delay(soxr_t); /* Query current delay in output samples.*/
SOXR char const * soxr_engine(soxr_t); /* Query resampling engine name. */
SOXR soxr_error_t soxr_clear(soxr_t); /* Ready for fresh signal, same config. */
SOXR void soxr_delete(soxr_t); /* Free resources. */
/* `Short-cut', single call to resample a (probably short) signal held entirely
* in memory. See soxr_create and soxr_process above for parameter details.
* Note that unlike soxr_create however, the default quality spec. for
* soxr_oneshot is per soxr_quality_spec(SOXR_LQ, 0). */
SOXR soxr_error_t soxr_oneshot(
double input_rate,
double output_rate,
unsigned num_channels,
soxr_in_t in , size_t ilen, size_t * idone,
soxr_out_t out, size_t olen, size_t * odone,
soxr_io_spec_t const *,
soxr_quality_spec_t const *,
soxr_runtime_spec_t const *);
/* For variable-rate resampling. See example # 5 for how to create a
* variable-rate resampler and how to use this function. */
SOXR soxr_error_t soxr_set_io_ratio(soxr_t, double io_ratio, size_t slew_len);
/* -------------------------- API type definitions -------------------------- */
typedef enum { /* Datatypes supported for I/O to/from the resampler: */
/* Internal; do not use: */
SOXR_FLOAT32, SOXR_FLOAT64, SOXR_INT32, SOXR_INT16, SOXR_SPLIT = 4,
/* Use for interleaved channels: */
SOXR_FLOAT32_I = SOXR_FLOAT32, SOXR_FLOAT64_I, SOXR_INT32_I, SOXR_INT16_I,
/* Use for split channels: */
SOXR_FLOAT32_S = SOXR_SPLIT , SOXR_FLOAT64_S, SOXR_INT32_S, SOXR_INT16_S
} soxr_datatype_t;
#define soxr_datatype_size(x) /* Returns `sizeof' a soxr_datatype_t sample. */\
((unsigned char *)"\4\10\4\2")[(x)&3]
struct soxr_io_spec { /* Typically */
soxr_datatype_t itype; /* Input datatype. SOXR_FLOAT32_I */
soxr_datatype_t otype; /* Output datatype. SOXR_FLOAT32_I */
double scale; /* Linear gain to apply during resampling. 1 */
void * e; /* Reserved for internal use 0 */
unsigned long flags; /* Per the following #defines. 0 */
};
#define SOXR_TPDF 0 /* Applicable only if otype is INT16. */
#define SOXR_NO_DITHER 8u /* Disable the above. */
struct soxr_quality_spec { /* Typically */
double precision; /* Conversion precision (in bits). 20 */
double phase_response; /* 0=minimum, ... 50=linear, ... 100=maximum 50 */
double passband_end; /* 0dB pt. bandwidth to preserve; nyquist=1 0.913*/
double stopband_begin; /* Aliasing/imaging control; > passband_end 1 */
void * e; /* Reserved for internal use. 0 */
unsigned long flags; /* Per the following #defines. 0 */
};
#define SOXR_ROLLOFF_SMALL 0u /* <= 0.01 dB */
#define SOXR_ROLLOFF_MEDIUM 1u /* <= 0.35 dB */
#define SOXR_ROLLOFF_NONE 2u /* For Chebyshev bandwidth. */
#define SOXR_HI_PREC_CLOCK 8u /* Increase `irrational' ratio accuracy. */
#define SOXR_DOUBLE_PRECISION 16u /* Use D.P. calcs even if precision <= 20. */
#define SOXR_VR 32u /* Variable-rate resampling. */
struct soxr_runtime_spec { /* Typically */
unsigned log2_min_dft_size; /* For DFT efficiency. [8,15] 10 */
unsigned log2_large_dft_size; /* For DFT efficiency. [8,20] 17 */
unsigned coef_size_kbytes; /* For SOXR_COEF_INTERP_AUTO (below). 400 */
unsigned num_threads; /* 0: per OMP_NUM_THREADS; 1: 1 thread. 1 */
void * e; /* Reserved for internal use. 0 */
unsigned long flags; /* Per the following #defines. 0 */
};
/* For `irrational' ratios only: */
#define SOXR_COEF_INTERP_AUTO 0u /* Auto select coef. interpolation. */
#define SOXR_COEF_INTERP_LOW 2u /* Man. select: less CPU, more memory. */
#define SOXR_COEF_INTERP_HIGH 3u /* Man. select: more CPU, less memory. */
/* -------------------------- API type constructors ------------------------- */
/* These functions allow setting of the most commonly-used structure
* parameters, with other parameters being given default values. The default
* values may then be overridden, directly in the structure, if needed. */
SOXR soxr_quality_spec_t soxr_quality_spec(
unsigned long recipe, /* Per the #defines immediately below. */
unsigned long flags); /* As soxr_quality_spec_t.flags. */
/* The 5 standard qualities found in SoX: */
#define SOXR_QQ 0 /* 'Quick' cubic interpolation. */
#define SOXR_LQ 1 /* 'Low' 16-bit with larger rolloff. */
#define SOXR_MQ 2 /* 'Medium' 16-bit with medium rolloff. */
#define SOXR_HQ SOXR_20_BITQ /* 'High quality'. */
#define SOXR_VHQ SOXR_28_BITQ /* 'Very high quality'. */
#define SOXR_16_BITQ 3
#define SOXR_20_BITQ 4
#define SOXR_24_BITQ 5
#define SOXR_28_BITQ 6
#define SOXR_32_BITQ 7
/* Reserved for internal use (to be removed): */
#define SOXR_LSR0Q 8 /* 'Best sinc'. */
#define SOXR_LSR1Q 9 /* 'Medium sinc'. */
#define SOXR_LSR2Q 10 /* 'Fast sinc'. */
#define SOXR_LINEAR_PHASE 0x00
#define SOXR_INTERMEDIATE_PHASE 0x10
#define SOXR_MINIMUM_PHASE 0x30
#define SOXR_STEEP_FILTER 0x40
SOXR soxr_runtime_spec_t soxr_runtime_spec(
unsigned num_threads);
SOXR soxr_io_spec_t soxr_io_spec(
soxr_datatype_t itype,
soxr_datatype_t otype);
/* --------------------------- Advanced use only ---------------------------- */
/* For new designs, the following functions/usage will probably not be needed.
* They might be useful when adding soxr into an existing design where values
* for the resampling-rate and/or number-of-channels parameters to soxr_create
* are not available when that function will be called. In such cases, the
* relevant soxr_create parameter(s) can be given as 0, then one or both of the
* following (as appropriate) later invoked (but prior to calling soxr_process
* or soxr_output):
*
* soxr_set_error(soxr, soxr_set_io_ratio(soxr, io_ratio, 0));
* soxr_set_error(soxr, soxr_set_num_channels(soxr, num_channels));
*/
SOXR soxr_error_t soxr_set_error(soxr_t, soxr_error_t);
SOXR soxr_error_t soxr_set_num_channels(soxr_t, unsigned);
#undef SOXR
#if defined __cplusplus
}
#endif
#endif

View File

@@ -0,0 +1,5 @@
Name: soxr-lsr
Description: High quality, one-dimensional sample-rate conversion library (with libsamplerate-like bindings)
Version: 0.1.3
Libs: -L/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/lib -lsoxr-lsr
Cflags: -I/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/include

5
C/lib/pkgconfig/soxr.pc Normal file
View File

@@ -0,0 +1,5 @@
Name: soxr
Description: High quality, one-dimensional sample-rate conversion library
Version: 0.1.3
Libs: -L/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/lib -lsoxr
Cflags: -I/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/include

View File

@@ -0,0 +1,23 @@
SoX Resampler Library Copyright (c) 2007-18 robs@users.sourceforge.net
This library is free software; you can redistribute it and/or modify it
under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation; either version 2.1 of the License, or (at
your option) any later version.
This library is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser
General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with this library; if not, see <https://www.gnu.org/licenses/>.
Notes
1. Re software in the `examples' directory: works that are not resampling
examples but are based on the given examples -- for example, applications using
the library -- shall not be considered to be derivative works of the examples.
2. If building with pffft.c, see the licence embedded in that file.

46
C/share/doc/libsoxr/NEWS Normal file
View File

@@ -0,0 +1,46 @@
Version 0.1.3 (2018-02-24)
* SIMD enhancements: SSE, AVX, Neon.
* Improve support for clang, ARM, and cross-compilation.
* Provide env. var. override of runtime parameters.
* Build fix re cmake variables AVCODEC_INCLUDE_DIRS & AVUTIL_INCLUDE_DIRS.
* Build options WITH_SINGLE_PRECISION, WITH_DOUBLE_PRECISION & WITH_SIMD have
been removed; replacement options are detailed in INSTALL, `Resampling
engines'.
Version 0.1.2 (2015-09-05)
* Fix conversion failure when I/O types differ but I/O rates don't.
* Fix #defines for interpolation order selection.
* Fix ineffectual SOXR_MINIMUM_PHASE and SOXR_INTERMEDIATE_PHASE in
soxr_quality_spec recipe.
* Fix soxr_delay() returning a negative number after end-of-input has been
indicated.
* Fix crash when using soxr_process() after calling soxr_clear().
* Be more POSIX compliant w.r.t. errno in the examples; fixes erroneous
reporting of errors on FreeBSD.
* Quality improvement for variable-rate.
* Various fixes/improvements to build/tests/documentation.
Version 0.1.1 (2013-03-03)
* Minor fixes/improvements to build/tests.
* Fix crash (e.g. with k3b) when null error pointer passed to src_create (lsr
bindings only).
* Fix broken resampling in many cases with SIMD and anti_aliasing_pc < 100.
* For clarity, renamed and slightly changed usage of three parameters in
soxr_quality_spec_t (ABI compatible, API incompatible). An application not
setting these parameters directly need make no change; otherwise, changes
should be made per the following example (as shown, compatibility with both
old/new APIs is maintained). See also the comments on these parameters in
soxr.h. N.B. ABI compatibility with the 0.1.0 API may be removed in a
future release.
#if !defined SOXR_VERSION /* Deprecated, 0.1.0 API */
q_spec.phase = minimum_phase? 0 : 50;
q_spec.bw_pc = cutoff * 100;
q_spec.anti_aliasing_pc = anti_aliasing * 100;
#else /* 0.1.1 API */ Explanation:
q_spec.phase_response = minimum_phase? 0 : 50; Renamed.
q_spec.passband_end = cutoff; Renamed, no longer %.
q_spec.stopband_begin = 2 - anti_aliasing; Renamed, no longer %, no
#endif longer mirrored in Fs.
Version 0.1.0 (2013-01-19)
* First public release.

View File

@@ -0,0 +1,53 @@
SoX Resampler Library Copyright (c) 2007-18 robs@users.sourceforge.net
The SoX Resampler library `libsoxr' performs one-dimensional sample-rate
conversion -- it may be used, for example, to resample PCM-encoded audio.
For higher-dimensional resampling, such as for visual-image processing, you
should look elsewhere.
It aims to give fast¹ and very high quality² results for any constant
(rational or irrational) resampling ratio. Phase-response, preserved
bandwidth, aliasing, and rejection level parameters are all configurable;
alternatively, simple `preset' configurations may be selected. A
variable-rate resampling mode of operation is also included.
The resampler is currently available either as part of `libsox' (the audio
file-format and effect library), or stand-alone as `libsoxr' (this package).
The interfaces to libsox and libsoxr are slightly different, with that of
libsoxr designed specifically for resampling. An application requiring
support for other effects, or for reading-from or writing-to audio files or
devices, should use libsox (or other libraries such as libsndfile or
libavformat).
Libsoxr provides a simple API that allows interfacing using the most
commonly-used sample formats and buffering schemes: sample-formats may be
either floating-point or integer, and multiple channels either interleaved
or split in separate buffers. The API is documented in the header file
`soxr.h', together with sample code found in the 'examples' directory.
For compatibility with the popular `libsamplerate' library, the header file
`soxr-lsr.h' is provided and may be used as an alternative API.³ Note
however, that libsoxr does not provide a full emulation of libsamplerate
and that using this approach, only a sub-set of libsoxr's features are
available.
The design was inspired by Laurent De Soras' paper `The Quest For The
Perfect Resampler', http://ldesoras.free.fr/doc/articles/resampler-en.pdf;
in essence, it combines Julius O. Smith's `Bandlimited Interpolation'
technique (https://ccrma.stanford.edu/~jos/resample/resample.pdf) with FFT-
based over-sampling.
Note that for real-time resampling, libsoxr may have a higher latency
than non-FFT based resamplers. For example, when using the `High Quality'
configuration to resample between 44100Hz and 48000Hz, the latency is
around 1000 output samples, i.e. roughly 20ms (though passband and FFT-
size configuration parameters may be used to reduce this figure).
For build and installation instructions, see the file `INSTALL'; for
copyright and licensing information, see the file `LICENCE'.
For support and new versions, see https://soxr.sourceforge.net
________
¹ For example, multi-channel resampling can utilise multiple CPU-cores.
² Bit-perfect within practical occupied-bandwidth limits.
³ For details of that API, see http://www.mega-nerd.com/SRC/api.html.

View File

@@ -0,0 +1,50 @@
/* SoX Resampler Library Copyright (c) 2007-13 robs@users.sourceforge.net
* Licence for this file: LGPL v2.1 See LICENCE for details. */
/* Example 1: `One-shot' resample a single block of data in memory.
*
* N.B. See example 2 for how to resample a stream (of blocks).
*
* Optional arguments are: INPUT-RATE OUTPUT-RATE
*
* With the default arguments, the output should produce lines similar to the
* following:
*
* 0.00 0.71 1.00 0.71 -0.00 -0.71 -1.00 -0.71
*
* Gibbs effect may be seen at the ends of the resampled signal; this is because
* unlike a `real-world' signal, the synthetic input signal is not band-limited.
*/
#include <soxr.h>
#include "examples-common.h"
const float in[] = { /* Input: 12 cycles of a sine wave with freq. = irate/4 */
0,1,0,-1, 0,1,0,-1, 0,1,0,-1, 0,1,0,-1, 0,1,0,-1, 0,1,0,-1,
0,1,0,-1, 0,1,0,-1, 0,1,0,-1, 0,1,0,-1, 0,1,0,-1, 0,1,0,-1};
int main(int argc, char const * arg[])
{
double irate = argc > 1? atof(arg[1]) : 1; /* Default to interpolation */
double orate = argc > 2? atof(arg[2]) : 2; /* by a factor of 2. */
size_t olen = (size_t)(AL(in) * orate / irate + .5); /* Assay output len. */
float * out = malloc(sizeof(*out) * olen); /* Allocate output buffer. */
size_t odone;
soxr_error_t error = soxr_oneshot(irate, orate, 1, /* Rates and # of chans. */
in, AL(in), NULL, /* Input. */
out, olen, &odone, /* Output. */
NULL, NULL, NULL); /* Default configuration.*/
unsigned i = 0; /* Print out the resampled data, */
while (i++ < odone)
printf("%5.2f%c", out[i-1], " \n"[!(i&7) || i == odone]);
printf("%-26s %s\n", arg[0], soxr_strerror(error)); /* and reported result. */
if (argc > 3) /* Library version check: */
printf("runtime=%s API="SOXR_THIS_VERSION_STR"\n", soxr_version());
free(out); /* Tidy up. */
return !!error;
}

View File

@@ -0,0 +1,40 @@
/* SoX Resampler Library Copyright (c) 2007-13 robs@users.sourceforge.net
* Licence for this file: LGPL v2.1 See LICENCE for details. */
/* Example 1a: Variant of example 1 using libsamplerate-like bindings. */
#include <soxr-lsr.h>
#include "examples-common.h"
float in[] = { /* Input: 12 cycles of a sine wave with freq. = irate/4 */
0,1,0,-1, 0,1,0,-1, 0,1,0,-1, 0,1,0,-1, 0,1,0,-1, 0,1,0,-1,
0,1,0,-1, 0,1,0,-1, 0,1,0,-1, 0,1,0,-1, 0,1,0,-1, 0,1,0,-1};
int main(int argc, char const * arg[])
{
double irate = argc > 1? atof(arg[1]) : 1; /* Default to interpolation */
double orate = argc > 2? atof(arg[2]) : 2; /* by a factor of 2. */
size_t olen = (size_t)(AL(in) * orate / irate + .5); /* Assay output len. */
float * out = (float *)malloc(sizeof(*out) * olen); /* Allocate output buf. */
int error, i = 0;
SRC_DATA data;
data.data_in = in;
data.data_out = out;
data.input_frames = AL(in);
data.output_frames = (int)olen;
data.src_ratio = orate / irate;
error = src_simple(&data, SRC_SINC_FASTEST, 1);
while (i++ < data.output_frames_gen) /* Print out the resampled data, */
printf("%5.2f%c", out[i-1], " \n"[!(i&7) || i == data.output_frames_gen]);
printf("%-26s %s\n", arg[0], src_strerror(error)); /* and reported result. */
if (argc > 3) /* Library version check: */
printf("runtime=%s\n", src_get_version());
free(out); /* Tidy up. */
return !!error;
}

View File

@@ -0,0 +1,78 @@
/* SoX Resampler Library Copyright (c) 2007-13 robs@users.sourceforge.net
* Licence for this file: LGPL v2.1 See LICENCE for details. */
/* Example 2: resample a raw, single-channel, floating-point data stream from
* stdin to stdout.
*
* The application uses the single function `soxr_process' for both input and
* output to/from the resampler; compared to the `input function' approach
* (illustrated in example 3) this requires that the application implements
* more logic, but one less function.
*
* Arguments are: INPUT-RATE OUTPUT-RATE
*/
#include <soxr.h>
#include "examples-common.h"
int main(int argc, char const * arg[])
{
double const irate = argc > 1? atof(arg[1]) : 96000.;
double const orate = argc > 2? atof(arg[2]) : 44100.;
/* Allocate resampling input and output buffers in proportion to the input
* and output rates: */
#define buf_total_len 15000 /* In samples. */
size_t const olen = (size_t)(orate * buf_total_len / (irate + orate) + .5);
size_t const ilen = buf_total_len - olen;
size_t const osize = sizeof(float), isize = osize;
void * obuf = malloc(osize * olen);
void * ibuf = malloc(isize * ilen);
size_t odone, written, need_input = 1;
soxr_error_t error;
/* Create a stream resampler: */
soxr_t soxr = soxr_create(
irate, orate, 1, /* Input rate, output rate, # of channels. */
&error, /* To report any error during creation. */
NULL, NULL, NULL); /* Use configuration defaults.*/
if (!error) { /* If all is well, run the resampler: */
USE_STD_STDIO;
/* Resample in blocks: */
do {
size_t ilen1 = 0;
if (need_input) {
/* Read one block into the buffer, ready to be resampled: */
ilen1 = fread(ibuf, isize, ilen, stdin);
if (!ilen1) { /* If the is no (more) input data available, */
free(ibuf); /* set ibuf to NULL, to indicate end-of-input */
ibuf = NULL; /* to the resampler. */
}
}
/* Copy data from the input buffer into the resampler, and resample
* to produce as much output as is possible to the given output buffer: */
error = soxr_process(soxr, ibuf, ilen1, NULL, obuf, olen, &odone);
written = fwrite(obuf, osize, odone, stdout); /* Consume output.*/
/* If the actual amount of data output is less than that requested, and
* we have not already reached the end of the input data, then supply some
* more input next time round the loop: */
need_input = odone < olen && ibuf;
} while (!error && (need_input || written));
}
/* Tidy up: */
soxr_delete(soxr);
free(obuf), free(ibuf);
/* Diagnostics: */
fprintf(stderr, "%-26s %s; I/O: %s\n", arg[0], soxr_strerror(error),
ferror(stdin) || ferror(stdout)? strerror(errno) : "no error");
return !!error;
}

View File

@@ -0,0 +1,114 @@
/* SoX Resampler Library Copyright (c) 2007-16 robs@users.sourceforge.net
* Licence for this file: LGPL v2.1 See LICENCE for details. */
/* Example 3: extends example 2 with multiple channels, multiple datatypes,
* and other options.
*
* The application provides an input function, called on demand by libsoxr, in
* response to calls to soxr_output(); compared to the `process' approach
* (illustrated in example 2) this requires that the application implements
* less logic, but one more function.
*
* The 11 arguments (which are optional, from last to first) are:
* INPUT-RATE As example 2
* OUTPUT-RATE Ditto
* NUM-CHANNELS Number of interleaved channels
* IN-DATATYPE# 0:float32 1:float64 2:int32 3:int16
* OUT-DATATYPE# Ditto; or 11 for un-dithered int16
* Q-RECIPE Quality recipe (in hex) See soxr.h
* Q-FLAGS Quality flags (in hex) See soxr.h
* PASSBAND-END %
* STOPBAND-BEGIN %
* PHASE-RESPONSE [0,100]
* USE-THREADS 1 to use multi-threading (where available)
*/
#include <soxr.h>
#include "examples-common.h"
typedef struct {void * ibuf; size_t isize;} input_context_t;
static size_t input_fn(input_context_t * p, soxr_cbuf_t * buf, size_t len)
{
/* Read one block into the buffer, ready to be input to the resampler: */
len = fread(p->ibuf, p->isize, len, stdin); /* Actual len read may be less. */
/* Inform the resampler of the data's whereabouts (which could be anywhere, in
* a freshly malloc'd buffer, for example): */
*buf = (!len && ferror(stdin))? NULL : p->ibuf; /* NULL if error occurred. */
return len; /* # of samples per channel to input. */
}
int main(int n, char const * arg[])
{
char const * const arg0 = n? --n, *arg++ : "", * engine = "";
double const irate = n? --n, atof(*arg++) : 96000.;
double const orate = n? --n, atof(*arg++) : 44100.;
unsigned const chans = n? --n, (unsigned)atoi(*arg++) : 1;
soxr_datatype_t const itype = n? --n, (soxr_datatype_t)atoi(*arg++) : 0;
unsigned const ospec = n? --n, (soxr_datatype_t)atoi(*arg++) : 0;
unsigned long const q_recipe= n? --n, strtoul(*arg++, 0, 16) : SOXR_HQ;
unsigned long const q_flags = n? --n, strtoul(*arg++, 0, 16) : 0;
double const passband_end = n? --n, atof(*arg++) : 0;
double const stopband_begin = n? --n, atof(*arg++) : 0;
double const phase_response = n? --n, atof(*arg++) : -1;
int const use_threads = n? --n, atoi(*arg++) : 1;
soxr_datatype_t const otype = ospec & 3;
soxr_quality_spec_t q_spec = soxr_quality_spec(q_recipe, q_flags);
soxr_io_spec_t io_spec = soxr_io_spec(itype, otype);
soxr_runtime_spec_t const runtime_spec = soxr_runtime_spec(!use_threads);
/* Allocate resampling input and output buffers in proportion to the input
* and output rates: */
#define buf_total_len 15000 /* In samples per channel. */
size_t const osize = soxr_datatype_size(otype) * chans;
size_t const isize = soxr_datatype_size(itype) * chans;
size_t const olen0= (size_t)(orate * buf_total_len / (irate + orate) + .5);
size_t const olen = min(max(olen0, 1), buf_total_len - 1);
size_t const ilen = buf_total_len - olen;
void * const obuf = malloc(osize * olen);
void * const ibuf = malloc(isize * ilen);
input_context_t icontext;
size_t odone, clips = 0;
soxr_error_t error;
soxr_t soxr;
/* Overrides (if given): */
if (passband_end > 0) q_spec.passband_end = passband_end / 100;
if (stopband_begin > 0) q_spec.stopband_begin = stopband_begin / 100;
if (phase_response >=0) q_spec.phase_response = phase_response;
io_spec.flags = ospec & ~7u;
/* Create a stream resampler: */
soxr = soxr_create(
irate, orate, chans, /* Input rate, output rate, # of channels. */
&error, /* To report any error during creation. */
&io_spec, &q_spec, &runtime_spec);
if (!error) { /* Register input_fn with the resampler: */
icontext.ibuf = ibuf, icontext.isize = isize;
error = soxr_set_input_fn(soxr, (soxr_input_fn_t)input_fn, &icontext, ilen);
}
if (!error) { /* If all is well, run the resampler: */
engine = soxr_engine(soxr);
USE_STD_STDIO;
/* Resample in blocks: */
do odone = soxr_output(soxr, obuf, olen);
while (fwrite(obuf, osize, odone, stdout)); /* Consume output. */
error = soxr_error(soxr); /* Check if any soxr error occurred. */
clips = *soxr_num_clips(soxr); /* Can occur only with integer output. */
}
/* Tidy up: */
soxr_delete(soxr);
free(obuf), free(ibuf);
/* Diagnostics: */
fprintf(stderr, "%-26s %s; %lu clips; I/O: %s (%s)\n",
arg0, soxr_strerror(error), (long unsigned)clips,
ferror(stdin) || ferror(stdout)? strerror(errno) : "no error", engine);
return !!error;
}

View File

@@ -0,0 +1,161 @@
/* SoX Resampler Library Copyright (c) 2007-18 robs@users.sourceforge.net
* Licence for this file: LGPL v2.1 See LICENCE for details. */
/* Example 4: variant of examples 2 & 3, demonstrating I/O with split channels.
*
* Note that, for convenience of the demonstration, split-channel data is
* made available by deinterleaving data sourced from and sent to
* interleaved file-streams; this adds a lot of code to the example that,
* for purposes of understanding how to use split-channels, may safely be
* ignored. In a real application, the channel-data might never be
* interleaved; for example, the split-channel data output from the
* resampler might be sent directly to digital-to-analogue converters.
*
* Note also (not shown in the examples) that split/interleaved channels may
* be used for input and output independently.
*
* Arguments are as example 3.
*/
#include <soxr.h>
#include "examples-common.h"
#define DEINTERLEAVE(T) do { \
unsigned i; \
size_t j; \
T * const * dest = (T * const *)dest0; \
T const * src = src0; \
if (ch == 1) memcpy(dest[0], src, n * sizeof(dest[0][0])); \
else for (j = 0; j < n; ++j) for (i = 0; i < ch; ++i) dest[i][j] = *src++; \
return; \
} while (0)
static void deinterleave(soxr_datatype_t data_type,
void * const * dest0,
void const * src0,
size_t n, unsigned ch)
{
switch (data_type & 3) {
case SOXR_FLOAT32: DEINTERLEAVE(float);
case SOXR_FLOAT64: DEINTERLEAVE(double);
case SOXR_INT32 : DEINTERLEAVE(int32_t);
case SOXR_INT16 : DEINTERLEAVE(int16_t);
default: break;
}
}
#define INTERLEAVE(T) do { \
unsigned i; \
size_t j; \
T * dest = dest0; \
T const * const * src = (T const * const *)src0; \
if (ch == 1) memcpy(dest, src[0], n * sizeof(dest[0])); \
else for (j = 0; j < n; ++j) for (i = 0; i < ch; ++i) *dest++ = src[i][j]; \
return; \
} while (0)
static void interleave(soxr_datatype_t data_type, void * dest0,
void * const * src0, size_t n, unsigned ch)
{
switch (data_type & 3) {
case SOXR_FLOAT32: INTERLEAVE(float);
case SOXR_FLOAT64: INTERLEAVE(double);
case SOXR_INT32 : INTERLEAVE(int32_t);
case SOXR_INT16 : INTERLEAVE(int16_t);
default: break;
}
}
int main(int n, char const * arg[])
{
char const * const arg0 = n? --n, *arg++ : "";
double const irate = n? --n, atof(*arg++) : 96000.;
double const orate = n? --n, atof(*arg++) : 44100.;
unsigned const chans = n? --n, (unsigned)atoi(*arg++) : 1;
soxr_datatype_t const itype = n? --n, (soxr_datatype_t)atoi(*arg++) : 0;
unsigned const ospec = n? --n, (soxr_datatype_t)atoi(*arg++) : 0;
unsigned long const q_recipe= n? --n, strtoul(*arg++, 0, 16) : SOXR_HQ;
unsigned long const q_flags = n? --n, strtoul(*arg++, 0, 16) : 0;
double const passband_end = n? --n, atof(*arg++) : 0;
double const stopband_begin = n? --n, atof(*arg++) : 0;
double const phase_response = n? --n, atof(*arg++) : -1;
int const use_threads = n? --n, atoi(*arg++) : 1;
soxr_datatype_t const otype = ospec & 3;
soxr_quality_spec_t q_spec = soxr_quality_spec(q_recipe, q_flags);
soxr_io_spec_t io_spec=soxr_io_spec(itype|SOXR_SPLIT, otype|SOXR_SPLIT);
soxr_runtime_spec_t const runtime_spec = soxr_runtime_spec(!use_threads);
/* Allocate resampling input and output buffers in proportion to the input
* and output rates: */
#define buf_total_len 15000 /* In samples per channel. */
size_t const osize = soxr_datatype_size(otype) * chans;
size_t const isize = soxr_datatype_size(itype) * chans;
size_t const olen = (size_t)(orate * buf_total_len / (irate + orate) + .5);
size_t const ilen = buf_total_len - olen;
/* For split channels: */
void * * const obuf_ptrs = malloc(sizeof(void *) * chans);
void * * ibuf_ptrs = malloc(sizeof(void *) * chans);
char * const obufs = malloc(osize * olen), * optr = obufs;
char * const ibufs = malloc(isize * ilen), * iptr = ibufs;
/* For interleaved channels: */
char * const obuf = malloc(osize * olen);
char * const ibuf = malloc(isize * ilen);
size_t odone, written, need_input = 1, clips = 0;
soxr_error_t error;
soxr_t soxr;
unsigned i;
/* Overrides (if given): */
if (passband_end > 0) q_spec.passband_end = passband_end / 100;
if (stopband_begin > 0) q_spec.stopband_begin = stopband_begin / 100;
if (phase_response >=0) q_spec.phase_response = phase_response;
io_spec.flags = ospec & ~7u;
soxr = soxr_create(
irate, orate, chans, &error, &io_spec, &q_spec, &runtime_spec);
for (i = 0; i < chans; ++i) {
ibuf_ptrs[i] = iptr;
obuf_ptrs[i] = optr;
iptr += ilen * soxr_datatype_size(itype);
optr += olen * soxr_datatype_size(otype);
}
if (!error) {
USE_STD_STDIO;
do {
size_t ilen1 = 0;
if (need_input) {
if (!(ilen1 = fread(ibuf, isize, ilen, stdin)))
free(ibuf_ptrs), ibuf_ptrs = 0; /* If none available, don't retry. */
else deinterleave(itype, ibuf_ptrs, ibuf, ilen1, chans);
}
error = soxr_process(soxr, ibuf_ptrs, ilen1, NULL, obuf_ptrs, olen, &odone);
interleave(otype, obuf, obuf_ptrs, odone, chans); /* Consume output... */
written = fwrite(obuf, osize, odone, stdout);
need_input = odone < olen && ibuf_ptrs;
} while (!error && (need_input || written));
clips = *soxr_num_clips(soxr); /* Can occur only with integer output. */
}
/* Tidy up: */
soxr_delete(soxr);
free(obuf), free(ibuf), free(obufs), free(ibufs);
free(obuf_ptrs), free(ibuf_ptrs);
/* Diagnostics: */
fprintf(stderr, "%-26s %s; %lu clips; I/O: %s\n",
arg0, soxr_strerror(error), (long unsigned)clips,
ferror(stdin) || ferror(stdout)? strerror(errno) : "no error");
return !!error;
}

View File

@@ -0,0 +1,93 @@
/* SoX Resampler Library Copyright (c) 2007-13 robs@users.sourceforge.net
* Licence for this file: LGPL v2.1 See LICENCE for details. */
/* Example 5: Variable-rate resampling. A test signal (held in a buffer) is
* resampled over a wide range of octaves. Resampled data is sent to stdout as
* raw, float32 samples. Choices of 2 test-signals and of 2 ways of varying
* the sample-rate are combined in a command-line option:
*
* Usage: ./5-variable-rate [0|1|2|3]
*/
#include <soxr.h>
#include "examples-common.h"
#define OCTAVES 5 /* Resampling range. ± */
#define OLEN 16 /* Output length in seconds. */
#define FS 44100 /* Output sampling rate in Hz. */
/* For output pos in [0,1], returns an ioratio in the 2^±OCTAVES range: */
static double ioratio(double pos, int fm)
{
if (fm) /* fm: non-0 for a fast-changing ioratio, 0 for a slow sweep. */
pos = .5 - cos(pos * 2 * M_PI) * .4 + sin(pos * OLEN * 20 * M_PI) * .05;
return pow(2, 2 * OCTAVES * pos - OCTAVES);
}
int main(int argc, char *arg[])
{
int opt = argc <= 1? 2 : (atoi(arg[1]) & 3), saw = opt & 1, fm = opt & 2;
float ibuf[10 << OCTAVES], obuf[AL(ibuf)];
int i, wl = 2 << OCTAVES;
size_t ilen = AL(ibuf), need_input = 1, written;
size_t odone, total_odone, total_olen = OLEN * FS;
size_t olen1 = fm? 10 : AL(obuf); /* Small block-len if fast-changing ratio */
soxr_error_t error;
/* When creating a var-rate resampler, q_spec must be set as follows: */
soxr_quality_spec_t q_spec = soxr_quality_spec(SOXR_HQ, SOXR_VR);
/* The ratio of the given input rate and output rates must equate to the
* maximum I/O ratio that will be used: */
soxr_t soxr = soxr_create(1 << OCTAVES, 1, 1, &error, NULL, &q_spec, NULL);
if (!error) {
USE_STD_STDIO;
/* Generate input signal, sine or saw, with wave-length = wl: */
for (i = 0; i < (int)ilen; ++i)
ibuf[i] = (float)(saw? (i%wl)/(wl-1.)-.5 : .9 * sin(2 * M_PI * i / wl));
/* Set the initial resampling ratio (N.B. 3rd parameter = 0): */
soxr_set_io_ratio(soxr, ioratio(0, fm), 0);
/* Resample in blocks of size olen1: */
for (total_odone = 0; !error && total_odone < total_olen;) {
/* The last block might be shorter: */
size_t block_len = min(olen1, total_olen - total_odone);
/* Determine the position in [0,1] of the end of the current block: */
double pos = (double)(total_odone + block_len) / (double)total_olen;
/* Calculate an ioratio for this position and instruct the resampler to
* move smoothly to the new value, over the course of outputting the next
* 'block_len' samples (or give 0 for an instant change instead): */
soxr_set_io_ratio(soxr, ioratio(pos, fm), block_len);
/* Output the block of samples, supplying input samples as needed: */
do {
size_t len = need_input? ilen : 0;
error = soxr_process(soxr, ibuf, len, NULL, obuf, block_len, &odone);
written = fwrite(obuf, sizeof(float), odone, stdout);
/* Update counters for the current block and for the total length: */
block_len -= odone;
total_odone += odone;
/* If soxr_process did not provide the complete block, we must call it
* again, supplying more input samples: */
need_input = block_len != 0;
} while (need_input && !error && written == odone);
/* Now that the block for the current ioratio is complete, go back
* round the main `for' loop in order to process the next block. */
}
soxr_delete(soxr);
}
/* Diagnostics: */
fprintf(stderr, "%-26s %s; I/O: %s\n", arg[0], soxr_strerror(error),
ferror(stdin) || ferror(stdout)? strerror(errno) : "no error");
return !!error;
}

View File

@@ -0,0 +1,20 @@
SoX Resampler Library Copyright (c) 2007-13 robs@users.sourceforge.net
These simple examples show the different ways that an application may
interface with soxr. Note that real-world applications may also have to
deal with file-formats, codecs, (more sophisticated) dithering, etc., which
are not covered here.
With the library installed, the examples may be built using commands similar
to the following. On unix-like systems:
cc 1-single-block.c -lsoxr
cc 1a-lsr.c -lsoxr-lsr
or, with MSVC on MS-Windows:
cl 1-single-block.c -I"C:/Program Files/soxr/include" "C:/Program Files/soxr/lib/soxr.lib"
cl 1a-lsr.c -I"C:/Program Files/soxr/include" "C:/Program Files/soxr/lib/soxr-lsr.lib"
IDEs may hide such commands behind configuration screens and build menus --
where applicable, consult your IDE's user-manual.

View File

@@ -0,0 +1,47 @@
/* SoX Resampler Library Copyright (c) 2007-18 robs@users.sourceforge.net
* Licence for this file: LGPL v2.1 See LICENCE for details. */
/* Common includes etc. for the examples. */
#include <assert.h>
#include <errno.h>
#include <limits.h>
#include <math.h>
#include <stddef.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#ifdef _WIN32
/* Work-around for broken file-I/O on MS-Windows: */
#include <io.h>
#include <fcntl.h>
#define USE_STD_STDIO _setmode(_fileno(stdout), _O_BINARY), \
_setmode(_fileno(stdin ), _O_BINARY)
#else
#define USE_STD_STDIO
#endif
#undef int16_t
#define int16_t short
#undef int32_t
#if LONG_MAX > 2147483647L
#define int32_t int
#elif LONG_MAX < 2147483647L
#error this programme requires that 'long int' has at least 32-bits
#else
#define int32_t long
#endif
#undef min
#define min(x,y) ((x)<(y)?(x):(y))
#undef max
#define max(x,y) ((x)>(y)?(x):(y))
#undef AL
#define AL(a) (sizeof(a)/sizeof((a)[0])) /* Array Length */
#undef M_PI /* Sometimes missing, so ensure that it is defined: */
#define M_PI 3.14159265358979323846

1
C/src/soxr-0.1.3/AUTHORS Normal file
View File

@@ -0,0 +1 @@
Rob Sykes <robs@users.sourceforge.net>

View File

@@ -0,0 +1,335 @@
# SoX Resampler Library Copyright (c) 2007-18 robs@users.sourceforge.net
# Licence for this file: LGPL v2.1 See LICENCE for details.
cmake_minimum_required (VERSION 3.1 FATAL_ERROR)
project (soxr C)
set (DESCRIPTION_SUMMARY
"High quality, one-dimensional sample-rate conversion library")
# Release versioning:
set (PROJECT_VERSION_MAJOR 0)
set (PROJECT_VERSION_MINOR 1)
set (PROJECT_VERSION_PATCH 3)
# For shared-object; if, since the last public release:
# 1) library code changed at all: ++revision
# 2) interfaces changed at all: ++current, revision = 0
# 3) interfaces added: ++age
# 4) interfaces removed: age = 0
set (SO_VERSION_CURRENT 1)
set (SO_VERSION_REVISION 2)
set (SO_VERSION_AGE 1)
math (EXPR SO_VERSION_MAJOR "${SO_VERSION_CURRENT} - ${SO_VERSION_AGE}")
math (EXPR SO_VERSION_MINOR "${SO_VERSION_AGE}")
math (EXPR SO_VERSION_PATCH "${SO_VERSION_REVISION}")
# Main options:
include (CMakeDependentOption)
if (NOT CMAKE_BUILD_TYPE)
set (CMAKE_BUILD_TYPE Release CACHE STRING
"Build type, one of: None Debug Release RelWithDebInfo MinSizeRel." FORCE)
endif ()
option (BUILD_TESTS "Build sanity-tests." ON)
option (BUILD_EXAMPLES "Build examples." OFF)
option (WITH_OPENMP "Include OpenMP threading." ON)
option (WITH_LSR_BINDINGS "Include a `libsamplerate'-like interface." ON)
cmake_dependent_option (BUILD_SHARED_LIBS
"Build shared (dynamic) soxr libraries." ON
"NOT WITH_DEV_GPROF" OFF)
cmake_dependent_option (WITH_VR32
"Include HQ variable-rate resampling engine." ON
"WITH_CR32 OR WITH_CR64 OR WITH_CR32S OR WITH_CR64S OR NOT DEFINED WITH_VR32" ON)
cmake_dependent_option (WITH_CR32
"Include HQ constant-rate resampling engine." ON
"WITH_VR32 OR WITH_CR64 OR WITH_CR32S OR WITH_CR64S" ON)
cmake_dependent_option (WITH_CR64
"Include VHQ constant-rate resampling engine." ON
"WITH_VR32 OR WITH_CR32 OR WITH_CR32S OR WITH_CR64S" ON)
cmake_dependent_option (WITH_CR64S
"Include VHQ SIMD constant-rate resampling engine." ON
"WITH_VR32 OR WITH_CR32 OR WITH_CR32S OR WITH_CR64" ON)
cmake_dependent_option (WITH_CR32S
"Include HQ SIMD constant-rate resampling engine." ON
"WITH_VR32 OR WITH_CR64 OR WITH_CR32 OR WITH_CR64S" ON)
cmake_dependent_option (WITH_PFFFT
"Use PFFFT (BSD-like licence) for HQ SIMD DFT." ON
"WITH_CR32S;NOT WITH_AVFFT" OFF)
cmake_dependent_option (WITH_AVFFT
"Use libavcodec (LGPL) for HQ SIMD DFT." OFF
"WITH_CR32S;NOT WITH_PFFFT" OFF)
cmake_dependent_option (BUILD_LSR_TESTS "Build LSR tests." OFF
"UNIX;NOT CMAKE_CROSSCOMPILING;EXISTS ${PROJECT_SOURCE_DIR}/lsr-tests;WITH_LSR_BINDINGS" OFF)
option (WITH_HI_PREC_CLOCK "Enable high-precision time-base." ON)
option (WITH_FLOAT_STD_PREC_CLOCK
"Use floating-point for standard-precision time-base." OFF)
option (WITH_DEV_TRACE "Enable developer trace capability." ON)
option (WITH_DEV_GPROF "Enable developer grpof output." OFF)
mark_as_advanced (WITH_HI_PREC_CLOCK WITH_FLOAT_STD_PREC_CLOCK
WITH_DEV_TRACE WITH_DEV_GPROF)
# Introspection:
list (APPEND CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/cmake/Modules)
include (CheckFunctionExists)
include (CheckIncludeFiles)
include (CheckLibraryExists)
include (SetSystemProcessor)
include (TestBigEndian)
set_system_processor ()
check_library_exists (m pow "" NEED_LIBM)
if (NEED_LIBM)
set (CMAKE_REQUIRED_LIBRARIES "m;${CMAKE_REQUIRED_LIBRARIES}")
set (LIBM_LIBRARIES m)
endif ()
if (${BUILD_EXAMPLES})
project (${PROJECT_NAME}) # Adds c++ compiler
endif ()
if (WITH_OPENMP)
find_package (OpenMP)
if (OPENMP_FOUND)
set (CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${OpenMP_C_FLAGS}")
set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${OpenMP_CXX_FLAGS}")
if (MINGW) # Is this still needed?
set (CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} ${OpenMP_C_FLAGS}")
set (CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} ${OpenMP_C_FLAGS}")
endif ()
endif()
endif ()
if (WITH_CR32S)
find_package (SIMD32)
set (WITH_CR32S ${SIMD32_FOUND})
endif ()
if (WITH_CR64S)
find_package (SIMD64)
set (WITH_CR64S ${SIMD64_FOUND})
endif ()
if (WITH_AVFFT)
find_package (LibAVCodec REQUIRED)
if (AVCODEC_FOUND)
include_directories (${AVCODEC_INCLUDE_DIRS})
set (LIBS ${LIBS} ${AVCODEC_LIBRARIES})
endif ()
endif ()
if (WITH_AVFFT OR (CMAKE_SYSTEM_PROCESSOR MATCHES "^arm" AND SIMD32_FOUND AND WITH_CR32))
find_package (LibAVUtil)
if (AVUTIL_FOUND)
include_directories (${AVUTIL_INCLUDE_DIRS})
set (LIBS ${LIBS} ${AVUTIL_LIBRARIES})
endif ()
endif ()
check_function_exists (lrint HAVE_LRINT)
check_include_files (fenv.h HAVE_FENV_H)
check_include_files (stdbool.h HAVE_STDBOOL_H)
check_include_files (stdint.h HAVE_STDINT_H)
test_big_endian (HAVE_BIGENDIAN)
# Compiler configuration:
if (CMAKE_C_COMPILER_ID STREQUAL "GNU" OR CMAKE_C_COMPILER_ID STREQUAL "Clang")
set (PROJECT_CXX_FLAGS "${PROJECT_CXX_FLAGS} -Wconversion -Wall -Wextra \
-pedantic -Wundef -Wpointer-arith -Wno-long-long")
if (CMAKE_C_COMPILER_ID STREQUAL "Clang")
set (PROJECT_CXX_FLAGS "${PROJECT_CXX_FLAGS} -Wno-keyword-macro")
endif ()
if (WITH_DEV_GPROF)
set (PROJECT_CXX_FLAGS "${PROJECT_CXX_FLAGS} -pg")
endif ()
# Can use std=c89, but gnu89 should give faster sinf, cosf, etc.:
set (PROJECT_C_FLAGS "${PROJECT_CXX_FLAGS} \
-std=gnu89 -Wnested-externs -Wmissing-prototypes -Wstrict-prototypes")
if (CMAKE_BUILD_TYPE STREQUAL "Release")
set (CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -s") # strip
endif ()
cmake_dependent_option (VISIBILITY_HIDDEN
"Build shared libraries with -fvisibility=hidden." ON
"BUILD_SHARED_LIBS" OFF)
mark_as_advanced (VISIBILITY_HIDDEN)
if (VISIBILITY_HIDDEN)
add_definitions (-fvisibility=hidden -DSOXR_VISIBILITY)
endif ()
endif ()
if (MSVC)
add_definitions (-D_USE_MATH_DEFINES -D_CRT_SECURE_NO_WARNINGS)
option (BUILD_SHARED_RUNTIME "MSVC, link with runtime dynamically." ON)
if (NOT BUILD_SHARED_RUNTIME)
foreach (flag_var
CMAKE_C_FLAGS CMAKE_CXX_FLAGS
CMAKE_C_FLAGS_DEBUG CMAKE_CXX_FLAGS_DEBUG
CMAKE_C_FLAGS_RELEASE CMAKE_CXX_FLAGS_RELEASE
CMAKE_C_FLAGS_MINSIZEREL CMAKE_CXX_FLAGS_MINSIZEREL
CMAKE_C_FLAGS_RELWITHDEBINFO CMAKE_CXX_FLAGS_RELWITHDEBINFO)
string (REGEX REPLACE "/MD" "/MT" ${flag_var} "${${flag_var}}")
endforeach ()
endif ()
# By default, do not warn when built on machines using only VS Express:
if (NOT DEFINED CMAKE_INSTALL_SYSTEM_RUNTIME_LIBS_NO_WARNINGS)
set (CMAKE_INSTALL_SYSTEM_RUNTIME_LIBS_NO_WARNINGS ON)
endif ()
endif ()
# Build configuration:
if (${BUILD_SHARED_LIBS} AND ${CMAKE_SYSTEM_NAME} STREQUAL Windows)
# Allow exes to find dlls:
set (BIN ${PROJECT_BINARY_DIR}/bin/)
set (EXAMPLES_BIN ${BIN})
set (CMAKE_LIBRARY_OUTPUT_DIRECTORY ${BIN})
set (CMAKE_RUNTIME_OUTPUT_DIRECTORY ${BIN})
else ()
set (BIN ./)
set (EXAMPLES_BIN ../examples/)
endif ()
set (LIB_TYPE STATIC)
if (BUILD_SHARED_LIBS)
set (LIB_TYPE SHARED)
if (MSVC)
add_definitions (-DSOXR_DLL)
endif ()
endif ()
if (CMAKE_BUILD_TYPE STREQUAL "None") # As used by some distros.
add_definitions (-DNDEBUG)
endif ()
# Installation configuration:
if (NOT DEFINED BIN_INSTALL_DIR)
set (BIN_INSTALL_DIR "${CMAKE_INSTALL_PREFIX}/bin")
endif ()
if (NOT DEFINED LIB_INSTALL_DIR)
set (LIB_INSTALL_DIR "${CMAKE_INSTALL_PREFIX}/lib${LIB_SUFFIX}")
endif ()
if (NOT DEFINED INCLUDE_INSTALL_DIR)
set (INCLUDE_INSTALL_DIR "${CMAKE_INSTALL_PREFIX}/include")
endif ()
if (NOT DEFINED DOC_INSTALL_DIR)
if (UNIX)
set (DOC_INSTALL_DIR "${CMAKE_INSTALL_PREFIX}/share/doc/lib${PROJECT_NAME}")
else ()
set (DOC_INSTALL_DIR "${CMAKE_INSTALL_PREFIX}/doc")
endif ()
endif ()
if (APPLE)
option (BUILD_FRAMEWORK "Build an OS X framework." OFF)
set (FRAMEWORK_INSTALL_DIR
"/Library/Frameworks" CACHE STRING "Directory to install frameworks to.")
endif ()
# Top-level:
set (PROJECT_VERSION
${PROJECT_VERSION_MAJOR}.${PROJECT_VERSION_MINOR}.${PROJECT_VERSION_PATCH})
set (SO_VERSION ${SO_VERSION_MAJOR}.${SO_VERSION_MINOR}.${SO_VERSION_PATCH})
configure_file (
${PROJECT_SOURCE_DIR}/${PROJECT_NAME}-config.h.in
${PROJECT_BINARY_DIR}/${PROJECT_NAME}-config.h)
include_directories (${PROJECT_BINARY_DIR})
if (NOT CMAKE_CROSSCOMPILING AND (BUILD_TESTS OR BUILD_LSR_TESTS))
enable_testing ()
endif ()
install (FILES
${CMAKE_CURRENT_SOURCE_DIR}/README
${CMAKE_CURRENT_SOURCE_DIR}/LICENCE
${CMAKE_CURRENT_SOURCE_DIR}/NEWS
DESTINATION ${DOC_INSTALL_DIR})
# Subdirectories:
include_directories (${PROJECT_SOURCE_DIR}/src)
add_subdirectory (src)
if (BUILD_TESTS)
add_subdirectory (tests)
endif ()
if (BUILD_LSR_TESTS)
add_subdirectory (lsr-tests)
endif ()
if (BUILD_EXAMPLES OR BUILD_TESTS)
add_subdirectory (examples)
endif ()
# GNU Autotools compatibility; 'make check':
add_custom_target (check COMMAND ${CMAKE_CTEST_COMMAND})
# GNU Autotools compatibility; 'make distclean':
if (UNIX)
add_custom_target (distclean COMMAND make clean && find .
\\! -path \\*/Modules/\\* \\! -name cmp-test.cmake -a -name \\*.cmake
-o -name CMakeFiles -o -name Makefile -o -name CMakeCache.txt -o -name
Testing -o -name cmake_install.cmake -o -name install_manifest.txt -o
-path ./soxr-config.h -o -name config.h -o -name \\*.pc -o -name \\*.s32
| xargs rm -rf)
endif ()
# Deinstallation:
configure_file (
"${CMAKE_CURRENT_SOURCE_DIR}/deinstall.cmake.in"
"${CMAKE_CURRENT_BINARY_DIR}/deinstall.cmake"
IMMEDIATE @ONLY)
add_custom_target (deinstall
COMMAND ${CMAKE_COMMAND} -P "${CMAKE_CURRENT_BINARY_DIR}/deinstall.cmake")
# Packaging:
if (UNIX)
set (CPACK_PACKAGE_VERSION_MAJOR "${PROJECT_VERSION_MAJOR}")
set (CPACK_PACKAGE_VERSION_MINOR "${PROJECT_VERSION_MINOR}")
set (CPACK_PACKAGE_VERSION_PATCH "${PROJECT_VERSION_PATCH}")
set (CPACK_SOURCE_GENERATOR "TXZ")
set (CPACK_SOURCE_IGNORE_FILES
"dist;/lsr-tests/;/Debug.*/;/Release.*/;\\\\.swp$;\\\\.git.*;/\\\\.git/")
include (CPack)
endif ()

View File

@@ -0,0 +1,502 @@
GNU LESSER GENERAL PUBLIC LICENSE
Version 2.1, February 1999
Copyright (C) 1991, 1999 Free Software Foundation, Inc.
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
Everyone is permitted to copy and distribute verbatim copies
of this license document, but changing it is not allowed.
[This is the first released version of the Lesser GPL. It also counts
as the successor of the GNU Library Public License, version 2, hence
the version number 2.1.]
Preamble
The licenses for most software are designed to take away your
freedom to share and change it. By contrast, the GNU General Public
Licenses are intended to guarantee your freedom to share and change
free software--to make sure the software is free for all its users.
This license, the Lesser General Public License, applies to some
specially designated software packages--typically libraries--of the
Free Software Foundation and other authors who decide to use it. You
can use it too, but we suggest you first think carefully about whether
this license or the ordinary General Public License is the better
strategy to use in any particular case, based on the explanations below.
When we speak of free software, we are referring to freedom of use,
not price. Our General Public Licenses are designed to make sure that
you have the freedom to distribute copies of free software (and charge
for this service if you wish); that you receive source code or can get
it if you want it; that you can change the software and use pieces of
it in new free programs; and that you are informed that you can do
these things.
To protect your rights, we need to make restrictions that forbid
distributors to deny you these rights or to ask you to surrender these
rights. These restrictions translate to certain responsibilities for
you if you distribute copies of the library or if you modify it.
For example, if you distribute copies of the library, whether gratis
or for a fee, you must give the recipients all the rights that we gave
you. You must make sure that they, too, receive or can get the source
code. If you link other code with the library, you must provide
complete object files to the recipients, so that they can relink them
with the library after making changes to the library and recompiling
it. And you must show them these terms so they know their rights.
We protect your rights with a two-step method: (1) we copyright the
library, and (2) we offer you this license, which gives you legal
permission to copy, distribute and/or modify the library.
To protect each distributor, we want to make it very clear that
there is no warranty for the free library. Also, if the library is
modified by someone else and passed on, the recipients should know
that what they have is not the original version, so that the original
author's reputation will not be affected by problems that might be
introduced by others.
Finally, software patents pose a constant threat to the existence of
any free program. We wish to make sure that a company cannot
effectively restrict the users of a free program by obtaining a
restrictive license from a patent holder. Therefore, we insist that
any patent license obtained for a version of the library must be
consistent with the full freedom of use specified in this license.
Most GNU software, including some libraries, is covered by the
ordinary GNU General Public License. This license, the GNU Lesser
General Public License, applies to certain designated libraries, and
is quite different from the ordinary General Public License. We use
this license for certain libraries in order to permit linking those
libraries into non-free programs.
When a program is linked with a library, whether statically or using
a shared library, the combination of the two is legally speaking a
combined work, a derivative of the original library. The ordinary
General Public License therefore permits such linking only if the
entire combination fits its criteria of freedom. The Lesser General
Public License permits more lax criteria for linking other code with
the library.
We call this license the "Lesser" General Public License because it
does Less to protect the user's freedom than the ordinary General
Public License. It also provides other free software developers Less
of an advantage over competing non-free programs. These disadvantages
are the reason we use the ordinary General Public License for many
libraries. However, the Lesser license provides advantages in certain
special circumstances.
For example, on rare occasions, there may be a special need to
encourage the widest possible use of a certain library, so that it becomes
a de-facto standard. To achieve this, non-free programs must be
allowed to use the library. A more frequent case is that a free
library does the same job as widely used non-free libraries. In this
case, there is little to gain by limiting the free library to free
software only, so we use the Lesser General Public License.
In other cases, permission to use a particular library in non-free
programs enables a greater number of people to use a large body of
free software. For example, permission to use the GNU C Library in
non-free programs enables many more people to use the whole GNU
operating system, as well as its variant, the GNU/Linux operating
system.
Although the Lesser General Public License is Less protective of the
users' freedom, it does ensure that the user of a program that is
linked with the Library has the freedom and the wherewithal to run
that program using a modified version of the Library.
The precise terms and conditions for copying, distribution and
modification follow. Pay close attention to the difference between a
"work based on the library" and a "work that uses the library". The
former contains code derived from the library, whereas the latter must
be combined with the library in order to run.
GNU LESSER GENERAL PUBLIC LICENSE
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
0. This License Agreement applies to any software library or other
program which contains a notice placed by the copyright holder or
other authorized party saying it may be distributed under the terms of
this Lesser General Public License (also called "this License").
Each licensee is addressed as "you".
A "library" means a collection of software functions and/or data
prepared so as to be conveniently linked with application programs
(which use some of those functions and data) to form executables.
The "Library", below, refers to any such software library or work
which has been distributed under these terms. A "work based on the
Library" means either the Library or any derivative work under
copyright law: that is to say, a work containing the Library or a
portion of it, either verbatim or with modifications and/or translated
straightforwardly into another language. (Hereinafter, translation is
included without limitation in the term "modification".)
"Source code" for a work means the preferred form of the work for
making modifications to it. For a library, complete source code means
all the source code for all modules it contains, plus any associated
interface definition files, plus the scripts used to control compilation
and installation of the library.
Activities other than copying, distribution and modification are not
covered by this License; they are outside its scope. The act of
running a program using the Library is not restricted, and output from
such a program is covered only if its contents constitute a work based
on the Library (independent of the use of the Library in a tool for
writing it). Whether that is true depends on what the Library does
and what the program that uses the Library does.
1. You may copy and distribute verbatim copies of the Library's
complete source code as you receive it, in any medium, provided that
you conspicuously and appropriately publish on each copy an
appropriate copyright notice and disclaimer of warranty; keep intact
all the notices that refer to this License and to the absence of any
warranty; and distribute a copy of this License along with the
Library.
You may charge a fee for the physical act of transferring a copy,
and you may at your option offer warranty protection in exchange for a
fee.
2. You may modify your copy or copies of the Library or any portion
of it, thus forming a work based on the Library, and copy and
distribute such modifications or work under the terms of Section 1
above, provided that you also meet all of these conditions:
a) The modified work must itself be a software library.
b) You must cause the files modified to carry prominent notices
stating that you changed the files and the date of any change.
c) You must cause the whole of the work to be licensed at no
charge to all third parties under the terms of this License.
d) If a facility in the modified Library refers to a function or a
table of data to be supplied by an application program that uses
the facility, other than as an argument passed when the facility
is invoked, then you must make a good faith effort to ensure that,
in the event an application does not supply such function or
table, the facility still operates, and performs whatever part of
its purpose remains meaningful.
(For example, a function in a library to compute square roots has
a purpose that is entirely well-defined independent of the
application. Therefore, Subsection 2d requires that any
application-supplied function or table used by this function must
be optional: if the application does not supply it, the square
root function must still compute square roots.)
These requirements apply to the modified work as a whole. If
identifiable sections of that work are not derived from the Library,
and can be reasonably considered independent and separate works in
themselves, then this License, and its terms, do not apply to those
sections when you distribute them as separate works. But when you
distribute the same sections as part of a whole which is a work based
on the Library, the distribution of the whole must be on the terms of
this License, whose permissions for other licensees extend to the
entire whole, and thus to each and every part regardless of who wrote
it.
Thus, it is not the intent of this section to claim rights or contest
your rights to work written entirely by you; rather, the intent is to
exercise the right to control the distribution of derivative or
collective works based on the Library.
In addition, mere aggregation of another work not based on the Library
with the Library (or with a work based on the Library) on a volume of
a storage or distribution medium does not bring the other work under
the scope of this License.
3. You may opt to apply the terms of the ordinary GNU General Public
License instead of this License to a given copy of the Library. To do
this, you must alter all the notices that refer to this License, so
that they refer to the ordinary GNU General Public License, version 2,
instead of to this License. (If a newer version than version 2 of the
ordinary GNU General Public License has appeared, then you can specify
that version instead if you wish.) Do not make any other change in
these notices.
Once this change is made in a given copy, it is irreversible for
that copy, so the ordinary GNU General Public License applies to all
subsequent copies and derivative works made from that copy.
This option is useful when you wish to copy part of the code of
the Library into a program that is not a library.
4. You may copy and distribute the Library (or a portion or
derivative of it, under Section 2) in object code or executable form
under the terms of Sections 1 and 2 above provided that you accompany
it with the complete corresponding machine-readable source code, which
must be distributed under the terms of Sections 1 and 2 above on a
medium customarily used for software interchange.
If distribution of object code is made by offering access to copy
from a designated place, then offering equivalent access to copy the
source code from the same place satisfies the requirement to
distribute the source code, even though third parties are not
compelled to copy the source along with the object code.
5. A program that contains no derivative of any portion of the
Library, but is designed to work with the Library by being compiled or
linked with it, is called a "work that uses the Library". Such a
work, in isolation, is not a derivative work of the Library, and
therefore falls outside the scope of this License.
However, linking a "work that uses the Library" with the Library
creates an executable that is a derivative of the Library (because it
contains portions of the Library), rather than a "work that uses the
library". The executable is therefore covered by this License.
Section 6 states terms for distribution of such executables.
When a "work that uses the Library" uses material from a header file
that is part of the Library, the object code for the work may be a
derivative work of the Library even though the source code is not.
Whether this is true is especially significant if the work can be
linked without the Library, or if the work is itself a library. The
threshold for this to be true is not precisely defined by law.
If such an object file uses only numerical parameters, data
structure layouts and accessors, and small macros and small inline
functions (ten lines or less in length), then the use of the object
file is unrestricted, regardless of whether it is legally a derivative
work. (Executables containing this object code plus portions of the
Library will still fall under Section 6.)
Otherwise, if the work is a derivative of the Library, you may
distribute the object code for the work under the terms of Section 6.
Any executables containing that work also fall under Section 6,
whether or not they are linked directly with the Library itself.
6. As an exception to the Sections above, you may also combine or
link a "work that uses the Library" with the Library to produce a
work containing portions of the Library, and distribute that work
under terms of your choice, provided that the terms permit
modification of the work for the customer's own use and reverse
engineering for debugging such modifications.
You must give prominent notice with each copy of the work that the
Library is used in it and that the Library and its use are covered by
this License. You must supply a copy of this License. If the work
during execution displays copyright notices, you must include the
copyright notice for the Library among them, as well as a reference
directing the user to the copy of this License. Also, you must do one
of these things:
a) Accompany the work with the complete corresponding
machine-readable source code for the Library including whatever
changes were used in the work (which must be distributed under
Sections 1 and 2 above); and, if the work is an executable linked
with the Library, with the complete machine-readable "work that
uses the Library", as object code and/or source code, so that the
user can modify the Library and then relink to produce a modified
executable containing the modified Library. (It is understood
that the user who changes the contents of definitions files in the
Library will not necessarily be able to recompile the application
to use the modified definitions.)
b) Use a suitable shared library mechanism for linking with the
Library. A suitable mechanism is one that (1) uses at run time a
copy of the library already present on the user's computer system,
rather than copying library functions into the executable, and (2)
will operate properly with a modified version of the library, if
the user installs one, as long as the modified version is
interface-compatible with the version that the work was made with.
c) Accompany the work with a written offer, valid for at
least three years, to give the same user the materials
specified in Subsection 6a, above, for a charge no more
than the cost of performing this distribution.
d) If distribution of the work is made by offering access to copy
from a designated place, offer equivalent access to copy the above
specified materials from the same place.
e) Verify that the user has already received a copy of these
materials or that you have already sent this user a copy.
For an executable, the required form of the "work that uses the
Library" must include any data and utility programs needed for
reproducing the executable from it. However, as a special exception,
the materials to be distributed need not include anything that is
normally distributed (in either source or binary form) with the major
components (compiler, kernel, and so on) of the operating system on
which the executable runs, unless that component itself accompanies
the executable.
It may happen that this requirement contradicts the license
restrictions of other proprietary libraries that do not normally
accompany the operating system. Such a contradiction means you cannot
use both them and the Library together in an executable that you
distribute.
7. You may place library facilities that are a work based on the
Library side-by-side in a single library together with other library
facilities not covered by this License, and distribute such a combined
library, provided that the separate distribution of the work based on
the Library and of the other library facilities is otherwise
permitted, and provided that you do these two things:
a) Accompany the combined library with a copy of the same work
based on the Library, uncombined with any other library
facilities. This must be distributed under the terms of the
Sections above.
b) Give prominent notice with the combined library of the fact
that part of it is a work based on the Library, and explaining
where to find the accompanying uncombined form of the same work.
8. You may not copy, modify, sublicense, link with, or distribute
the Library except as expressly provided under this License. Any
attempt otherwise to copy, modify, sublicense, link with, or
distribute the Library is void, and will automatically terminate your
rights under this License. However, parties who have received copies,
or rights, from you under this License will not have their licenses
terminated so long as such parties remain in full compliance.
9. You are not required to accept this License, since you have not
signed it. However, nothing else grants you permission to modify or
distribute the Library or its derivative works. These actions are
prohibited by law if you do not accept this License. Therefore, by
modifying or distributing the Library (or any work based on the
Library), you indicate your acceptance of this License to do so, and
all its terms and conditions for copying, distributing or modifying
the Library or works based on it.
10. Each time you redistribute the Library (or any work based on the
Library), the recipient automatically receives a license from the
original licensor to copy, distribute, link with or modify the Library
subject to these terms and conditions. You may not impose any further
restrictions on the recipients' exercise of the rights granted herein.
You are not responsible for enforcing compliance by third parties with
this License.
11. If, as a consequence of a court judgment or allegation of patent
infringement or for any other reason (not limited to patent issues),
conditions are imposed on you (whether by court order, agreement or
otherwise) that contradict the conditions of this License, they do not
excuse you from the conditions of this License. If you cannot
distribute so as to satisfy simultaneously your obligations under this
License and any other pertinent obligations, then as a consequence you
may not distribute the Library at all. For example, if a patent
license would not permit royalty-free redistribution of the Library by
all those who receive copies directly or indirectly through you, then
the only way you could satisfy both it and this License would be to
refrain entirely from distribution of the Library.
If any portion of this section is held invalid or unenforceable under any
particular circumstance, the balance of the section is intended to apply,
and the section as a whole is intended to apply in other circumstances.
It is not the purpose of this section to induce you to infringe any
patents or other property right claims or to contest validity of any
such claims; this section has the sole purpose of protecting the
integrity of the free software distribution system which is
implemented by public license practices. Many people have made
generous contributions to the wide range of software distributed
through that system in reliance on consistent application of that
system; it is up to the author/donor to decide if he or she is willing
to distribute software through any other system and a licensee cannot
impose that choice.
This section is intended to make thoroughly clear what is believed to
be a consequence of the rest of this License.
12. If the distribution and/or use of the Library is restricted in
certain countries either by patents or by copyrighted interfaces, the
original copyright holder who places the Library under this License may add
an explicit geographical distribution limitation excluding those countries,
so that distribution is permitted only in or among countries not thus
excluded. In such case, this License incorporates the limitation as if
written in the body of this License.
13. The Free Software Foundation may publish revised and/or new
versions of the Lesser General Public License from time to time.
Such new versions will be similar in spirit to the present version,
but may differ in detail to address new problems or concerns.
Each version is given a distinguishing version number. If the Library
specifies a version number of this License which applies to it and
"any later version", you have the option of following the terms and
conditions either of that version or of any later version published by
the Free Software Foundation. If the Library does not specify a
license version number, you may choose any version ever published by
the Free Software Foundation.
14. If you wish to incorporate parts of the Library into other free
programs whose distribution conditions are incompatible with these,
write to the author to ask for permission. For software which is
copyrighted by the Free Software Foundation, write to the Free
Software Foundation; we sometimes make exceptions for this. Our
decision will be guided by the two goals of preserving the free status
of all derivatives of our free software and of promoting the sharing
and reuse of software generally.
NO WARRANTY
15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO
WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW.
EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR
OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY
KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE
LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME
THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN
WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY
AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU
FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR
CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE
LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING
RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A
FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF
SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
DAMAGES.
END OF TERMS AND CONDITIONS
How to Apply These Terms to Your New Libraries
If you develop a new library, and you want it to be of the greatest
possible use to the public, we recommend making it free software that
everyone can redistribute and change. You can do so by permitting
redistribution under these terms (or, alternatively, under the terms of the
ordinary General Public License).
To apply these terms, attach the following notices to the library. It is
safest to attach them to the start of each source file to most effectively
convey the exclusion of warranty; and each file should have at least the
"copyright" line and a pointer to where the full notice is found.
<one line to give the library's name and a brief idea of what it does.>
Copyright (C) <year> <name of author>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
Also add information on how to contact you by electronic and paper mail.
You should also get your employer (if you work as a programmer) or your
school, if any, to sign a "copyright disclaimer" for the library, if
necessary. Here is a sample; alter the names:
Yoyodyne, Inc., hereby disclaims all copyright interest in the
library `Frob' (a library for tweaking knobs) written by James Random Hacker.
<signature of Ty Coon>, 1 April 1990
Ty Coon, President of Vice
That's all there is to it!

183
C/src/soxr-0.1.3/INSTALL Normal file
View File

@@ -0,0 +1,183 @@
SoX Resampler Library Copyright (c) 2007-16 robs@users.sourceforge.net
INSTALLATION GUIDE CONTENTS
* Standard build
* Build customisation
* Cross-compilation
* Integration with other build systems
* Run-time configuration
STANDARD BUILD
1. Prerequisites:
Before you can build this library, you need to have available on your
system:
* A C-compiler with 64-bit integer support and, optionally, OpenMP, SIMD.
* A 'make' utility (most compiler installations already have one of these).
* CMake v3.0 or newer: https://cmake.org/download/
2. Build:
At a command prompt, change directory (`cd') to the one containing this
file, then enter:
go (on MS-Windows with nmake)
or
./go (on Unix-like systems)
This should build the library and run a few sanity tests.
3. Installation:
Note that this step may need to be performed by a system
administrator. Enter:
nmake install (on MS-Windows)
or
cd Release; make install (on Unix-like)
4. Preparation for use:
To use the library you may need to set up appropriate paths to the
library and its header file in your development environment.
5. Installation test
To test the installation, build and run some of the example programmes
(see examples/README).
BUILD CUSTOMISATION
If it is necessary to customise the build, then steps 2 and 3 above should be
substituted as follows: change directory to the one containing this file, then
enter commands along the lines:
mkdir build
cd build
cmake -Wno-dev -DCMAKE_BUILD_TYPE=Release [OPTIONS] ..
make
make test
sudo make install
N.B. The CMAKE_BUILD_TYPE to use for library deployment is Release.
To list help on the available options, enter:
cmake -LH ..
Options, if given, should be preceded with '-D', e.g.
-DBUILD_SHARED_LIBS:BOOL=OFF
Resampling engines
As available on a given system, options for including up-to five resampling
engines are available (per above) as follows:
WITH_CR32: for constant-rate HQ resampling,
WITH_CR32S: SIMD variant of previous,
WITH_CR64: for constant-rate VHQ resampling,
WITH_CR64S: SIMD variant of previous,
WITH_VR32: for variable-rate HQ resampling.
By default, these options are all set to ON.
When both SIMD and non-SIMD engine variants are included, run-time selection
is automatic (based on CPU capability) for x86 CPUs, and can be automatic for
ARM CPUs if the 3rd-party library `libavutil' is available at libsoxr
build-time. Which engine has been selected for a specific configuration and
invocation of the library can be checked using example #3, which reports it.
See also Run-time Configuration, below.
CROSS-COMPILATION
E.g. targeting a Linux ARM system:
mkdir build
cd build
cmake -DCMAKE_SYSTEM_NAME=Linux \
-DCMAKE_C_COMPILER=arm-linux-gnueabi-gcc \
..
or, also building the examples (one of which uses C++):
cmake -DCMAKE_SYSTEM_NAME=Linux \
-DCMAKE_C_COMPILER=arm-linux-gnueabi-gcc \
-DCMAKE_CXX_COMPILER=arm-linux-gnueabi-g++ \
-DBUILD_EXAMPLES=1 \
..
E.g. with Mingw (Linux host), using a tool-chain file:
mkdir build
cd build
cmake -DCMAKE_TOOLCHAIN_FILE=~/Toolchain-x86_64-mingw-w64-mingw32.cmake \
-DCMAKE_INSTALL_PREFIX=install \
..
make
where ~/Toolchain-x86_64-mingw-w64-mingw32.cmake might contain:
SET(CMAKE_SYSTEM_NAME Windows)
SET(CMAKE_C_COMPILER /usr/bin/x86_64-w64-mingw32-gcc)
SET(CMAKE_CXX_COMPILER /usr/bin/x86_64-w64-mingw32-g++)
SET(CMAKE_RC_COMPILER /usr/bin/x86_64-w64-mingw32-windres)
SET(CMAKE_Fortran_COMPILER /usr/bin/x86_64-w64-mingw32-gfortran)
SET(CMAKE_AR:FILEPATH /usr/bin/x86_64-w64-mingw32-ar)
SET(CMAKE_RANLIB:FILEPATH /usr/bin/x86_64-w64-mingw32-ranlib)
SET(CMAKE_FIND_ROOT_PATH /usr/x86_64-w64-mingw32)
SET(CMAKE_FIND_ROOT_PATH_MODE_PROGRAM NEVER)
SET(CMAKE_FIND_ROOT_PATH_MODE_LIBRARY ONLY)
SET(CMAKE_FIND_ROOT_PATH_MODE_INCLUDE ONLY)
SET(QT_BINARY_DIR /usr/x86_64-w64-mingw32/bin /usr/bin)
SET(Boost_COMPILER -gcc47)
INTEGRATION WITH OTHER BUILD SYSTEMS
Autotools-based systems might find it useful to create a file called
`configure' in the directory containing this file, consisting of the line:
cmake -DBUILD_SHARED_LIBS=OFF .
(or with other build options as required).
For MS Visual Studio, see msvc/README.
RUN-TIME CONFIGURATION
The libsoxr API structure soxr_runtime_spec_t allows application developers
to optimise some aspects of libsoxrs operation for a particular application.
Optimal performance however, might depend on an individual end-users run-
time system and the end-users preferences. Hence environment variables are
available to set (override) run-time parameters as follows:
Env. variable Equivalent soxr_runtime_spec_t item (see soxr.h)
------------------ -----------------------------------
SOXR_COEFS_SIZE coef_size_kbytes
SOXR_COEF_INTERP SOXR_COEF_INTERP_xxx
SOXR_LARGE_DFT_SIZE log2_large_dft_size
SOXR_MIN_DFT_SIZE log2_min_dft_size
SOXR_NUM_THREADS num_threads
Additionally, the SOXR_USE_SIMD32 and SOXR_USE_SIMD64 boolean environment
variables can be used to override automatic selection (or to provide manual
selection where automatic selection is not available) between SIMD and
non-SIMD engine variants.

23
C/src/soxr-0.1.3/LICENCE Normal file
View File

@@ -0,0 +1,23 @@
SoX Resampler Library Copyright (c) 2007-18 robs@users.sourceforge.net
This library is free software; you can redistribute it and/or modify it
under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation; either version 2.1 of the License, or (at
your option) any later version.
This library is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser
General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with this library; if not, see <https://www.gnu.org/licenses/>.
Notes
1. Re software in the `examples' directory: works that are not resampling
examples but are based on the given examples -- for example, applications using
the library -- shall not be considered to be derivative works of the examples.
2. If building with pffft.c, see the licence embedded in that file.

46
C/src/soxr-0.1.3/NEWS Normal file
View File

@@ -0,0 +1,46 @@
Version 0.1.3 (2018-02-24)
* SIMD enhancements: SSE, AVX, Neon.
* Improve support for clang, ARM, and cross-compilation.
* Provide env. var. override of runtime parameters.
* Build fix re cmake variables AVCODEC_INCLUDE_DIRS & AVUTIL_INCLUDE_DIRS.
* Build options WITH_SINGLE_PRECISION, WITH_DOUBLE_PRECISION & WITH_SIMD have
been removed; replacement options are detailed in INSTALL, `Resampling
engines'.
Version 0.1.2 (2015-09-05)
* Fix conversion failure when I/O types differ but I/O rates don't.
* Fix #defines for interpolation order selection.
* Fix ineffectual SOXR_MINIMUM_PHASE and SOXR_INTERMEDIATE_PHASE in
soxr_quality_spec recipe.
* Fix soxr_delay() returning a negative number after end-of-input has been
indicated.
* Fix crash when using soxr_process() after calling soxr_clear().
* Be more POSIX compliant w.r.t. errno in the examples; fixes erroneous
reporting of errors on FreeBSD.
* Quality improvement for variable-rate.
* Various fixes/improvements to build/tests/documentation.
Version 0.1.1 (2013-03-03)
* Minor fixes/improvements to build/tests.
* Fix crash (e.g. with k3b) when null error pointer passed to src_create (lsr
bindings only).
* Fix broken resampling in many cases with SIMD and anti_aliasing_pc < 100.
* For clarity, renamed and slightly changed usage of three parameters in
soxr_quality_spec_t (ABI compatible, API incompatible). An application not
setting these parameters directly need make no change; otherwise, changes
should be made per the following example (as shown, compatibility with both
old/new APIs is maintained). See also the comments on these parameters in
soxr.h. N.B. ABI compatibility with the 0.1.0 API may be removed in a
future release.
#if !defined SOXR_VERSION /* Deprecated, 0.1.0 API */
q_spec.phase = minimum_phase? 0 : 50;
q_spec.bw_pc = cutoff * 100;
q_spec.anti_aliasing_pc = anti_aliasing * 100;
#else /* 0.1.1 API */ Explanation:
q_spec.phase_response = minimum_phase? 0 : 50; Renamed.
q_spec.passband_end = cutoff; Renamed, no longer %.
q_spec.stopband_begin = 2 - anti_aliasing; Renamed, no longer %, no
#endif longer mirrored in Fs.
Version 0.1.0 (2013-01-19)
* First public release.

53
C/src/soxr-0.1.3/README Normal file
View File

@@ -0,0 +1,53 @@
SoX Resampler Library Copyright (c) 2007-18 robs@users.sourceforge.net
The SoX Resampler library `libsoxr' performs one-dimensional sample-rate
conversion -- it may be used, for example, to resample PCM-encoded audio.
For higher-dimensional resampling, such as for visual-image processing, you
should look elsewhere.
It aims to give fast¹ and very high quality² results for any constant
(rational or irrational) resampling ratio. Phase-response, preserved
bandwidth, aliasing, and rejection level parameters are all configurable;
alternatively, simple `preset' configurations may be selected. A
variable-rate resampling mode of operation is also included.
The resampler is currently available either as part of `libsox' (the audio
file-format and effect library), or stand-alone as `libsoxr' (this package).
The interfaces to libsox and libsoxr are slightly different, with that of
libsoxr designed specifically for resampling. An application requiring
support for other effects, or for reading-from or writing-to audio files or
devices, should use libsox (or other libraries such as libsndfile or
libavformat).
Libsoxr provides a simple API that allows interfacing using the most
commonly-used sample formats and buffering schemes: sample-formats may be
either floating-point or integer, and multiple channels either interleaved
or split in separate buffers. The API is documented in the header file
`soxr.h', together with sample code found in the 'examples' directory.
For compatibility with the popular `libsamplerate' library, the header file
`soxr-lsr.h' is provided and may be used as an alternative API.³ Note
however, that libsoxr does not provide a full emulation of libsamplerate
and that using this approach, only a sub-set of libsoxr's features are
available.
The design was inspired by Laurent De Soras' paper `The Quest For The
Perfect Resampler', http://ldesoras.free.fr/doc/articles/resampler-en.pdf;
in essence, it combines Julius O. Smith's `Bandlimited Interpolation'
technique (https://ccrma.stanford.edu/~jos/resample/resample.pdf) with FFT-
based over-sampling.
Note that for real-time resampling, libsoxr may have a higher latency
than non-FFT based resamplers. For example, when using the `High Quality'
configuration to resample between 44100Hz and 48000Hz, the latency is
around 1000 output samples, i.e. roughly 20ms (though passband and FFT-
size configuration parameters may be used to reduce this figure).
For build and installation instructions, see the file `INSTALL'; for
copyright and licensing information, see the file `LICENCE'.
For support and new versions, see https://soxr.sourceforge.net
________
¹ For example, multi-channel resampling can utilise multiple CPU-cores.
² Bit-perfect within practical occupied-bandwidth limits.
³ For details of that API, see http://www.mega-nerd.com/SRC/api.html.

View File

@@ -0,0 +1,544 @@
# This is the CMakeCache file.
# For build in directory: /Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release
# It was generated by CMake: /opt/homebrew/bin/cmake
# You can edit this file to change values found and used by cmake.
# If you do not want to change any of the values, simply exit the editor.
# If you do want to change a value, simply edit, save, and exit the editor.
# The syntax for the file is as follows:
# KEY:TYPE=VALUE
# KEY is the name of a variable in the cache.
# TYPE is a hint to GUIs for the type of VALUE, DO NOT EDIT TYPE!.
# VALUE is the current value for the KEY.
########################
# EXTERNAL cache entries
########################
//Build examples.
BUILD_EXAMPLES:BOOL=OFF
//Build an OS X framework.
BUILD_FRAMEWORK:BOOL=OFF
//Build shared (dynamic) soxr libraries.
BUILD_SHARED_LIBS:BOOL=OFF
//Build sanity-tests.
BUILD_TESTS:BOOL=ON
//Path to a program.
CMAKE_ADDR2LINE:FILEPATH=CMAKE_ADDR2LINE-NOTFOUND
//Path to a program.
CMAKE_AR:FILEPATH=/usr/bin/ar
//Choose the type of build, options are: None Debug Release RelWithDebInfo
// MinSizeRel ...
CMAKE_BUILD_TYPE:STRING=Release
//Enable/Disable color output during build.
CMAKE_COLOR_MAKEFILE:BOOL=ON
//C compiler
CMAKE_C_COMPILER:FILEPATH=/usr/bin/cc
//Flags used by the C compiler during all build types.
CMAKE_C_FLAGS:STRING=
//Flags used by the C compiler during DEBUG builds.
CMAKE_C_FLAGS_DEBUG:STRING=-g
//Flags used by the C compiler during MINSIZEREL builds.
CMAKE_C_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG
//Flags used by the C compiler during RELEASE builds.
CMAKE_C_FLAGS_RELEASE:STRING=-O3 -DNDEBUG
//Flags used by the C compiler during RELWITHDEBINFO builds.
CMAKE_C_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG
//Path to a program.
CMAKE_DLLTOOL:FILEPATH=CMAKE_DLLTOOL-NOTFOUND
//Flags used by the linker during all build types.
CMAKE_EXE_LINKER_FLAGS:STRING=
//Flags used by the linker during DEBUG builds.
CMAKE_EXE_LINKER_FLAGS_DEBUG:STRING=
//Flags used by the linker during MINSIZEREL builds.
CMAKE_EXE_LINKER_FLAGS_MINSIZEREL:STRING=
//Flags used by the linker during RELEASE builds.
CMAKE_EXE_LINKER_FLAGS_RELEASE:STRING=
//Flags used by the linker during RELWITHDEBINFO builds.
CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING=
//Enable/Disable output of compile commands during generation.
CMAKE_EXPORT_COMPILE_COMMANDS:BOOL=
//Value Computed by CMake.
CMAKE_FIND_PACKAGE_REDIRECTS_DIR:STATIC=/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release/CMakeFiles/pkgRedirects
//Path to a program.
CMAKE_INSTALL_NAME_TOOL:FILEPATH=/usr/bin/install_name_tool
//Install path prefix, prepended onto install directories.
CMAKE_INSTALL_PREFIX:PATH=/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C
//Path to a program.
CMAKE_LINKER:FILEPATH=/usr/bin/ld
//Path to a program.
CMAKE_MAKE_PROGRAM:FILEPATH=/usr/bin/make
//Flags used by the linker during the creation of modules during
// all build types.
CMAKE_MODULE_LINKER_FLAGS:STRING=
//Flags used by the linker during the creation of modules during
// DEBUG builds.
CMAKE_MODULE_LINKER_FLAGS_DEBUG:STRING=
//Flags used by the linker during the creation of modules during
// MINSIZEREL builds.
CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL:STRING=
//Flags used by the linker during the creation of modules during
// RELEASE builds.
CMAKE_MODULE_LINKER_FLAGS_RELEASE:STRING=
//Flags used by the linker during the creation of modules during
// RELWITHDEBINFO builds.
CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO:STRING=
//Path to a program.
CMAKE_NM:FILEPATH=/usr/bin/nm
//Path to a program.
CMAKE_OBJCOPY:FILEPATH=CMAKE_OBJCOPY-NOTFOUND
//Path to a program.
CMAKE_OBJDUMP:FILEPATH=/usr/bin/objdump
//Build architectures for OSX
CMAKE_OSX_ARCHITECTURES:STRING=
//Minimum OS X version to target for deployment (at runtime); newer
// APIs weak linked. Set to empty string for default value.
CMAKE_OSX_DEPLOYMENT_TARGET:STRING=
//The product will be built against the headers and libraries located
// inside the indicated SDK.
CMAKE_OSX_SYSROOT:STRING=
//No help, variable specified on the command line.
CMAKE_POLICY_VERSION_MINIMUM:UNINITIALIZED=3.5
//Value Computed by CMake
CMAKE_PROJECT_COMPAT_VERSION:STATIC=
//Value Computed by CMake
CMAKE_PROJECT_DESCRIPTION:STATIC=
//Value Computed by CMake
CMAKE_PROJECT_HOMEPAGE_URL:STATIC=
//Value Computed by CMake
CMAKE_PROJECT_NAME:STATIC=soxr
//Value Computed by CMake
CMAKE_PROJECT_VERSION:STATIC=
//Value Computed by CMake
CMAKE_PROJECT_VERSION_MAJOR:STATIC=
//Value Computed by CMake
CMAKE_PROJECT_VERSION_MINOR:STATIC=
//Value Computed by CMake
CMAKE_PROJECT_VERSION_PATCH:STATIC=
//Value Computed by CMake
CMAKE_PROJECT_VERSION_TWEAK:STATIC=
//Path to a program.
CMAKE_RANLIB:FILEPATH=/usr/bin/ranlib
//Path to a program.
CMAKE_READELF:FILEPATH=CMAKE_READELF-NOTFOUND
//Flags used by the linker during the creation of shared libraries
// during all build types.
CMAKE_SHARED_LINKER_FLAGS:STRING=
//Flags used by the linker during the creation of shared libraries
// during DEBUG builds.
CMAKE_SHARED_LINKER_FLAGS_DEBUG:STRING=
//Flags used by the linker during the creation of shared libraries
// during MINSIZEREL builds.
CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL:STRING=
//Flags used by the linker during the creation of shared libraries
// during RELEASE builds.
CMAKE_SHARED_LINKER_FLAGS_RELEASE:STRING=
//Flags used by the linker during the creation of shared libraries
// during RELWITHDEBINFO builds.
CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO:STRING=
//If set, runtime paths are not added when installing shared libraries,
// but are added when building.
CMAKE_SKIP_INSTALL_RPATH:BOOL=NO
//If set, runtime paths are not added when using shared libraries.
CMAKE_SKIP_RPATH:BOOL=NO
//Flags used by the archiver during the creation of static libraries
// during all build types.
CMAKE_STATIC_LINKER_FLAGS:STRING=
//Flags used by the archiver during the creation of static libraries
// during DEBUG builds.
CMAKE_STATIC_LINKER_FLAGS_DEBUG:STRING=
//Flags used by the archiver during the creation of static libraries
// during MINSIZEREL builds.
CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL:STRING=
//Flags used by the archiver during the creation of static libraries
// during RELEASE builds.
CMAKE_STATIC_LINKER_FLAGS_RELEASE:STRING=
//Flags used by the archiver during the creation of static libraries
// during RELWITHDEBINFO builds.
CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO:STRING=
//Path to a program.
CMAKE_STRIP:FILEPATH=/usr/bin/strip
//Path to a program.
CMAKE_TAPI:FILEPATH=/Library/Developer/CommandLineTools/usr/bin/tapi
//If this value is on, makefiles will be generated without the
// .SILENT directive, and all commands will be echoed to the console
// during the make. This is useful for debugging only. With Visual
// Studio IDE projects all commands are done without /nologo.
CMAKE_VERBOSE_MAKEFILE:BOOL=FALSE
//Enable to build OSX bundles
CPACK_BINARY_BUNDLE:BOOL=OFF
//Enable to build Debian packages
CPACK_BINARY_DEB:BOOL=OFF
//Enable to build OSX Drag And Drop package
CPACK_BINARY_DRAGNDROP:BOOL=OFF
//Enable to build FreeBSD packages
CPACK_BINARY_FREEBSD:BOOL=OFF
//Enable to build IFW packages
CPACK_BINARY_IFW:BOOL=OFF
//Enable to build NSIS packages
CPACK_BINARY_NSIS:BOOL=OFF
//Enable to build productbuild packages
CPACK_BINARY_PRODUCTBUILD:BOOL=OFF
//Enable to build RPM packages
CPACK_BINARY_RPM:BOOL=OFF
//Enable to build STGZ packages
CPACK_BINARY_STGZ:BOOL=ON
//Enable to build TBZ2 packages
CPACK_BINARY_TBZ2:BOOL=OFF
//Enable to build TGZ packages
CPACK_BINARY_TGZ:BOOL=ON
//Enable to build TXZ packages
CPACK_BINARY_TXZ:BOOL=OFF
//Directory to install frameworks to.
FRAMEWORK_INSTALL_DIR:STRING=/Library/Frameworks
//C compiler flags for OpenMP parallelization
OpenMP_C_FLAGS:STRING=-Xclang -fopenmp
//C compiler libraries for OpenMP parallelization
OpenMP_C_LIB_NAMES:STRING=libomp
//Path to a library.
OpenMP_libomp_LIBRARY:FILEPATH=/usr/local/lib/libomp.dylib
//C compiler flags for FLOAT-32 (single-precision) SIMD vectorization
SIMD32_C_FLAGS:STRING=
//C compiler flags for FLOAT-64 (double-precision) SIMD vectorization
SIMD64_C_FLAGS:STRING=
//Include HQ constant-rate resampling engine.
WITH_CR32:BOOL=ON
//Include HQ SIMD constant-rate resampling engine.
WITH_CR32S:BOOL=ON
//Include VHQ constant-rate resampling engine.
WITH_CR64:BOOL=ON
//Include VHQ SIMD constant-rate resampling engine.
WITH_CR64S:BOOL=ON
//Enable developer grpof output.
WITH_DEV_GPROF:BOOL=OFF
//Enable developer trace capability.
WITH_DEV_TRACE:BOOL=ON
//Use floating-point for standard-precision time-base.
WITH_FLOAT_STD_PREC_CLOCK:BOOL=OFF
//Enable high-precision time-base.
WITH_HI_PREC_CLOCK:BOOL=ON
//Include a `libsamplerate'-like interface.
WITH_LSR_BINDINGS:BOOL=ON
//Include OpenMP threading.
WITH_OPENMP:BOOL=OFF
//Use PFFFT (BSD-like licence) for HQ SIMD DFT.
WITH_PFFFT:BOOL=ON
//Include HQ variable-rate resampling engine.
WITH_VR32:BOOL=ON
//Dependencies for the target
soxr-lsr_LIB_DEPENDS:STATIC=general;soxr;
//Value Computed by CMake
soxr_BINARY_DIR:STATIC=/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release
//Value Computed by CMake
soxr_IS_TOP_LEVEL:STATIC=ON
//Dependencies for the target
soxr_LIB_DEPENDS:STATIC=general;m;
//Value Computed by CMake
soxr_SOURCE_DIR:STATIC=/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3
########################
# INTERNAL cache entries
########################
//ADVANCED property for variable: CMAKE_ADDR2LINE
CMAKE_ADDR2LINE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_AR
CMAKE_AR-ADVANCED:INTERNAL=1
//This is the directory where this CMakeCache.txt was created
CMAKE_CACHEFILE_DIR:INTERNAL=/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release
//Major version of cmake used to create the current loaded cache
CMAKE_CACHE_MAJOR_VERSION:INTERNAL=4
//Minor version of cmake used to create the current loaded cache
CMAKE_CACHE_MINOR_VERSION:INTERNAL=1
//Patch version of cmake used to create the current loaded cache
CMAKE_CACHE_PATCH_VERSION:INTERNAL=1
//ADVANCED property for variable: CMAKE_COLOR_MAKEFILE
CMAKE_COLOR_MAKEFILE-ADVANCED:INTERNAL=1
//Path to CMake executable.
CMAKE_COMMAND:INTERNAL=/opt/homebrew/bin/cmake
//Path to cpack program executable.
CMAKE_CPACK_COMMAND:INTERNAL=/opt/homebrew/bin/cpack
//Path to ctest program executable.
CMAKE_CTEST_COMMAND:INTERNAL=/opt/homebrew/bin/ctest
//ADVANCED property for variable: CMAKE_C_COMPILER
CMAKE_C_COMPILER-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_C_FLAGS
CMAKE_C_FLAGS-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_C_FLAGS_DEBUG
CMAKE_C_FLAGS_DEBUG-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_C_FLAGS_MINSIZEREL
CMAKE_C_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_C_FLAGS_RELEASE
CMAKE_C_FLAGS_RELEASE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_C_FLAGS_RELWITHDEBINFO
CMAKE_C_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_DLLTOOL
CMAKE_DLLTOOL-ADVANCED:INTERNAL=1
//Path to cache edit program executable.
CMAKE_EDIT_COMMAND:INTERNAL=/opt/homebrew/bin/ccmake
//Whether to issue deprecation errors for macros and functions.
CMAKE_ERROR_DEPRECATED:INTERNAL=FALSE
//Executable file format
CMAKE_EXECUTABLE_FORMAT:INTERNAL=MACHO
//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS
CMAKE_EXE_LINKER_FLAGS-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_DEBUG
CMAKE_EXE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_MINSIZEREL
CMAKE_EXE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELEASE
CMAKE_EXE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO
CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_EXPORT_COMPILE_COMMANDS
CMAKE_EXPORT_COMPILE_COMMANDS-ADVANCED:INTERNAL=1
//Name of external makefile project generator.
CMAKE_EXTRA_GENERATOR:INTERNAL=
//Name of generator.
CMAKE_GENERATOR:INTERNAL=Unix Makefiles
//Generator instance identifier.
CMAKE_GENERATOR_INSTANCE:INTERNAL=
//Name of generator platform.
CMAKE_GENERATOR_PLATFORM:INTERNAL=
//Name of generator toolset.
CMAKE_GENERATOR_TOOLSET:INTERNAL=
//Source directory with the top level CMakeLists.txt file for this
// project
CMAKE_HOME_DIRECTORY:INTERNAL=/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3
//ADVANCED property for variable: CMAKE_INSTALL_NAME_TOOL
CMAKE_INSTALL_NAME_TOOL-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_LINKER
CMAKE_LINKER-ADVANCED:INTERNAL=1
//Name of CMakeLists files to read
CMAKE_LIST_FILE_NAME:INTERNAL=CMakeLists.txt
//ADVANCED property for variable: CMAKE_MAKE_PROGRAM
CMAKE_MAKE_PROGRAM-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS
CMAKE_MODULE_LINKER_FLAGS-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_DEBUG
CMAKE_MODULE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL
CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELEASE
CMAKE_MODULE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO
CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_NM
CMAKE_NM-ADVANCED:INTERNAL=1
//number of local generators
CMAKE_NUMBER_OF_MAKEFILES:INTERNAL=4
//ADVANCED property for variable: CMAKE_OBJCOPY
CMAKE_OBJCOPY-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_OBJDUMP
CMAKE_OBJDUMP-ADVANCED:INTERNAL=1
//Platform information initialized
CMAKE_PLATFORM_INFO_INITIALIZED:INTERNAL=1
//ADVANCED property for variable: CMAKE_RANLIB
CMAKE_RANLIB-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_READELF
CMAKE_READELF-ADVANCED:INTERNAL=1
//Path to CMake installation.
CMAKE_ROOT:INTERNAL=/opt/homebrew/share/cmake
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS
CMAKE_SHARED_LINKER_FLAGS-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_DEBUG
CMAKE_SHARED_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL
CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELEASE
CMAKE_SHARED_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO
CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_SKIP_INSTALL_RPATH
CMAKE_SKIP_INSTALL_RPATH-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_SKIP_RPATH
CMAKE_SKIP_RPATH-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS
CMAKE_STATIC_LINKER_FLAGS-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_DEBUG
CMAKE_STATIC_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL
CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELEASE
CMAKE_STATIC_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO
CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_STRIP
CMAKE_STRIP-ADVANCED:INTERNAL=1
//Suppress errors that are meant for the author of the CMakeLists.txt
// files.
CMAKE_SUPPRESS_DEVELOPER_ERRORS:INTERNAL=TRUE
//Suppress Warnings that are meant for the author of the CMakeLists.txt
// files.
CMAKE_SUPPRESS_DEVELOPER_WARNINGS:INTERNAL=TRUE
//ADVANCED property for variable: CMAKE_TAPI
CMAKE_TAPI-ADVANCED:INTERNAL=1
//uname command
CMAKE_UNAME:INTERNAL=/usr/bin/uname
//ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE
CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1
//Whether to issue warnings for deprecated functionality.
CMAKE_WARN_DEPRECATED:INTERNAL=FALSE
//ADVANCED property for variable: CPACK_BINARY_BUNDLE
CPACK_BINARY_BUNDLE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CPACK_BINARY_DEB
CPACK_BINARY_DEB-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CPACK_BINARY_DRAGNDROP
CPACK_BINARY_DRAGNDROP-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CPACK_BINARY_FREEBSD
CPACK_BINARY_FREEBSD-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CPACK_BINARY_IFW
CPACK_BINARY_IFW-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CPACK_BINARY_NSIS
CPACK_BINARY_NSIS-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CPACK_BINARY_PRODUCTBUILD
CPACK_BINARY_PRODUCTBUILD-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CPACK_BINARY_RPM
CPACK_BINARY_RPM-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CPACK_BINARY_STGZ
CPACK_BINARY_STGZ-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CPACK_BINARY_TBZ2
CPACK_BINARY_TBZ2-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CPACK_BINARY_TGZ
CPACK_BINARY_TGZ-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CPACK_BINARY_TXZ
CPACK_BINARY_TXZ-ADVANCED:INTERNAL=1
//Test DETECT_SIMD32_C_FLAGS
DETECT_SIMD32_C_FLAGS:INTERNAL=
//Details about finding OpenMP
FIND_PACKAGE_MESSAGE_DETAILS_OpenMP:INTERNAL=[TRUE][ ][v5.1()]
//Details about finding OpenMP_C
FIND_PACKAGE_MESSAGE_DETAILS_OpenMP_C:INTERNAL=[-Xclang -fopenmp][/usr/local/lib/libomp.dylib][v5.1()]
//Have include fenv.h
HAVE_FENV_H:INTERNAL=1
//Have function lrint
HAVE_LRINT:INTERNAL=1
//Have include stdbool.h
HAVE_STDBOOL_H:INTERNAL=1
//Have include stdint.h
HAVE_STDINT_H:INTERNAL=1
//Have library m
NEED_LIBM:INTERNAL=1
//Result of TRY_COMPILE
OpenMP_COMPILE_RESULT_C_Xclang fopenmp:INTERNAL=TRUE
//ADVANCED property for variable: OpenMP_C_FLAGS
OpenMP_C_FLAGS-ADVANCED:INTERNAL=1
//ADVANCED property for variable: OpenMP_C_LIB_NAMES
OpenMP_C_LIB_NAMES-ADVANCED:INTERNAL=1
//C compiler's OpenMP specification date
OpenMP_C_SPEC_DATE:INTERNAL=202011
//Result of TRY_COMPILE
OpenMP_SPECTEST_C_:INTERNAL=TRUE
//ADVANCED property for variable: OpenMP_libomp_LIBRARY
OpenMP_libomp_LIBRARY-ADVANCED:INTERNAL=1
//ADVANCED property for variable: SIMD32_C_FLAGS
SIMD32_C_FLAGS-ADVANCED:INTERNAL=1
//ADVANCED property for variable: SIMD64_C_FLAGS
SIMD64_C_FLAGS-ADVANCED:INTERNAL=1
//ADVANCED property for variable: WITH_DEV_GPROF
WITH_DEV_GPROF-ADVANCED:INTERNAL=1
//ADVANCED property for variable: WITH_DEV_TRACE
WITH_DEV_TRACE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: WITH_FLOAT_STD_PREC_CLOCK
WITH_FLOAT_STD_PREC_CLOCK-ADVANCED:INTERNAL=1
//ADVANCED property for variable: WITH_HI_PREC_CLOCK
WITH_HI_PREC_CLOCK-ADVANCED:INTERNAL=1

View File

@@ -0,0 +1,84 @@
set(CMAKE_C_COMPILER "/usr/bin/cc")
set(CMAKE_C_COMPILER_ARG1 "")
set(CMAKE_C_COMPILER_ID "AppleClang")
set(CMAKE_C_COMPILER_VERSION "17.0.0.17000013")
set(CMAKE_C_COMPILER_VERSION_INTERNAL "")
set(CMAKE_C_COMPILER_WRAPPER "")
set(CMAKE_C_STANDARD_COMPUTED_DEFAULT "17")
set(CMAKE_C_EXTENSIONS_COMPUTED_DEFAULT "ON")
set(CMAKE_C_STANDARD_LATEST "23")
set(CMAKE_C_COMPILE_FEATURES "c_std_90;c_function_prototypes;c_std_99;c_restrict;c_variadic_macros;c_std_11;c_static_assert;c_std_17;c_std_23")
set(CMAKE_C90_COMPILE_FEATURES "c_std_90;c_function_prototypes")
set(CMAKE_C99_COMPILE_FEATURES "c_std_99;c_restrict;c_variadic_macros")
set(CMAKE_C11_COMPILE_FEATURES "c_std_11;c_static_assert")
set(CMAKE_C17_COMPILE_FEATURES "c_std_17")
set(CMAKE_C23_COMPILE_FEATURES "c_std_23")
set(CMAKE_C_PLATFORM_ID "Darwin")
set(CMAKE_C_SIMULATE_ID "")
set(CMAKE_C_COMPILER_FRONTEND_VARIANT "GNU")
set(CMAKE_C_COMPILER_APPLE_SYSROOT "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk")
set(CMAKE_C_SIMULATE_VERSION "")
set(CMAKE_C_COMPILER_ARCHITECTURE_ID "arm64")
set(CMAKE_AR "/usr/bin/ar")
set(CMAKE_C_COMPILER_AR "")
set(CMAKE_RANLIB "/usr/bin/ranlib")
set(CMAKE_C_COMPILER_RANLIB "")
set(CMAKE_LINKER "/usr/bin/ld")
set(CMAKE_LINKER_LINK "")
set(CMAKE_LINKER_LLD "")
set(CMAKE_C_COMPILER_LINKER "/Library/Developer/CommandLineTools/usr/bin/ld")
set(CMAKE_C_COMPILER_LINKER_ID "AppleClang")
set(CMAKE_C_COMPILER_LINKER_VERSION 1167.5)
set(CMAKE_C_COMPILER_LINKER_FRONTEND_VARIANT GNU)
set(CMAKE_MT "")
set(CMAKE_TAPI "/Library/Developer/CommandLineTools/usr/bin/tapi")
set(CMAKE_COMPILER_IS_GNUCC )
set(CMAKE_C_COMPILER_LOADED 1)
set(CMAKE_C_COMPILER_WORKS TRUE)
set(CMAKE_C_ABI_COMPILED TRUE)
set(CMAKE_C_COMPILER_ENV_VAR "CC")
set(CMAKE_C_COMPILER_ID_RUN 1)
set(CMAKE_C_SOURCE_FILE_EXTENSIONS c;m)
set(CMAKE_C_IGNORE_EXTENSIONS h;H;o;O;obj;OBJ;def;DEF;rc;RC)
set(CMAKE_C_LINKER_PREFERENCE 10)
set(CMAKE_C_LINKER_DEPFILE_SUPPORTED )
set(CMAKE_LINKER_PUSHPOP_STATE_SUPPORTED )
set(CMAKE_C_LINKER_PUSHPOP_STATE_SUPPORTED )
# Save compiler ABI information.
set(CMAKE_C_SIZEOF_DATA_PTR "8")
set(CMAKE_C_COMPILER_ABI "")
set(CMAKE_C_BYTE_ORDER "LITTLE_ENDIAN")
set(CMAKE_C_LIBRARY_ARCHITECTURE "")
if(CMAKE_C_SIZEOF_DATA_PTR)
set(CMAKE_SIZEOF_VOID_P "${CMAKE_C_SIZEOF_DATA_PTR}")
endif()
if(CMAKE_C_COMPILER_ABI)
set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_C_COMPILER_ABI}")
endif()
if(CMAKE_C_LIBRARY_ARCHITECTURE)
set(CMAKE_LIBRARY_ARCHITECTURE "")
endif()
set(CMAKE_C_CL_SHOWINCLUDES_PREFIX "")
if(CMAKE_C_CL_SHOWINCLUDES_PREFIX)
set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_C_CL_SHOWINCLUDES_PREFIX}")
endif()
set(CMAKE_C_IMPLICIT_INCLUDE_DIRECTORIES "/usr/local/include;/Library/Developer/CommandLineTools/usr/lib/clang/17/include;/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include;/Library/Developer/CommandLineTools/usr/include")
set(CMAKE_C_IMPLICIT_LINK_LIBRARIES "")
set(CMAKE_C_IMPLICIT_LINK_DIRECTORIES "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/lib;/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/lib/swift")
set(CMAKE_C_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/System/Library/Frameworks")

View File

@@ -0,0 +1,15 @@
set(CMAKE_HOST_SYSTEM "Darwin-24.6.0")
set(CMAKE_HOST_SYSTEM_NAME "Darwin")
set(CMAKE_HOST_SYSTEM_VERSION "24.6.0")
set(CMAKE_HOST_SYSTEM_PROCESSOR "arm64")
set(CMAKE_SYSTEM "Darwin-24.6.0")
set(CMAKE_SYSTEM_NAME "Darwin")
set(CMAKE_SYSTEM_VERSION "24.6.0")
set(CMAKE_SYSTEM_PROCESSOR "arm64")
set(CMAKE_CROSSCOMPILING "FALSE")
set(CMAKE_SYSTEM_LOADED 1)

View File

@@ -0,0 +1,934 @@
#ifdef __cplusplus
# error "A C++ compiler has been selected for C."
#endif
#if defined(__18CXX)
# define ID_VOID_MAIN
#endif
#if defined(__CLASSIC_C__)
/* cv-qualifiers did not exist in K&R C */
# define const
# define volatile
#endif
#if !defined(__has_include)
/* If the compiler does not have __has_include, pretend the answer is
always no. */
# define __has_include(x) 0
#endif
/* Version number components: V=Version, R=Revision, P=Patch
Version date components: YYYY=Year, MM=Month, DD=Day */
#if defined(__INTEL_COMPILER) || defined(__ICC)
# define COMPILER_ID "Intel"
# if defined(_MSC_VER)
# define SIMULATE_ID "MSVC"
# endif
# if defined(__GNUC__)
# define SIMULATE_ID "GNU"
# endif
/* __INTEL_COMPILER = VRP prior to 2021, and then VVVV for 2021 and later,
except that a few beta releases use the old format with V=2021. */
# if __INTEL_COMPILER < 2021 || __INTEL_COMPILER == 202110 || __INTEL_COMPILER == 202111
# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100)
# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10)
# if defined(__INTEL_COMPILER_UPDATE)
# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE)
# else
# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10)
# endif
# else
# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER)
# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER_UPDATE)
/* The third version component from --version is an update index,
but no macro is provided for it. */
# define COMPILER_VERSION_PATCH DEC(0)
# endif
# if defined(__INTEL_COMPILER_BUILD_DATE)
/* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */
# define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE)
# endif
# if defined(_MSC_VER)
/* _MSC_VER = VVRR */
# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
# endif
# if defined(__GNUC__)
# define SIMULATE_VERSION_MAJOR DEC(__GNUC__)
# elif defined(__GNUG__)
# define SIMULATE_VERSION_MAJOR DEC(__GNUG__)
# endif
# if defined(__GNUC_MINOR__)
# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__)
# endif
# if defined(__GNUC_PATCHLEVEL__)
# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)
# endif
#elif (defined(__clang__) && defined(__INTEL_CLANG_COMPILER)) || defined(__INTEL_LLVM_COMPILER)
# define COMPILER_ID "IntelLLVM"
#if defined(_MSC_VER)
# define SIMULATE_ID "MSVC"
#endif
#if defined(__GNUC__)
# define SIMULATE_ID "GNU"
#endif
/* __INTEL_LLVM_COMPILER = VVVVRP prior to 2021.2.0, VVVVRRPP for 2021.2.0 and
* later. Look for 6 digit vs. 8 digit version number to decide encoding.
* VVVV is no smaller than the current year when a version is released.
*/
#if __INTEL_LLVM_COMPILER < 1000000L
# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/100)
# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/10 % 10)
# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 10)
#else
# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/10000)
# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/100 % 100)
# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 100)
#endif
#if defined(_MSC_VER)
/* _MSC_VER = VVRR */
# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
#endif
#if defined(__GNUC__)
# define SIMULATE_VERSION_MAJOR DEC(__GNUC__)
#elif defined(__GNUG__)
# define SIMULATE_VERSION_MAJOR DEC(__GNUG__)
#endif
#if defined(__GNUC_MINOR__)
# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__)
#endif
#if defined(__GNUC_PATCHLEVEL__)
# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)
#endif
#elif defined(__PATHCC__)
# define COMPILER_ID "PathScale"
# define COMPILER_VERSION_MAJOR DEC(__PATHCC__)
# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__)
# if defined(__PATHCC_PATCHLEVEL__)
# define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__)
# endif
#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__)
# define COMPILER_ID "Embarcadero"
# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF)
# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF)
# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF)
#elif defined(__BORLANDC__)
# define COMPILER_ID "Borland"
/* __BORLANDC__ = 0xVRR */
# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8)
# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF)
#elif defined(__WATCOMC__) && __WATCOMC__ < 1200
# define COMPILER_ID "Watcom"
/* __WATCOMC__ = VVRR */
# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100)
# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10)
# if (__WATCOMC__ % 10) > 0
# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10)
# endif
#elif defined(__WATCOMC__)
# define COMPILER_ID "OpenWatcom"
/* __WATCOMC__ = VVRP + 1100 */
# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100)
# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10)
# if (__WATCOMC__ % 10) > 0
# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10)
# endif
#elif defined(__SUNPRO_C)
# define COMPILER_ID "SunPro"
# if __SUNPRO_C >= 0x5100
/* __SUNPRO_C = 0xVRRP */
# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>12)
# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xFF)
# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF)
# else
/* __SUNPRO_CC = 0xVRP */
# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>8)
# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xF)
# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF)
# endif
#elif defined(__HP_cc)
# define COMPILER_ID "HP"
/* __HP_cc = VVRRPP */
# define COMPILER_VERSION_MAJOR DEC(__HP_cc/10000)
# define COMPILER_VERSION_MINOR DEC(__HP_cc/100 % 100)
# define COMPILER_VERSION_PATCH DEC(__HP_cc % 100)
#elif defined(__DECC)
# define COMPILER_ID "Compaq"
/* __DECC_VER = VVRRTPPPP */
# define COMPILER_VERSION_MAJOR DEC(__DECC_VER/10000000)
# define COMPILER_VERSION_MINOR DEC(__DECC_VER/100000 % 100)
# define COMPILER_VERSION_PATCH DEC(__DECC_VER % 10000)
#elif defined(__IBMC__) && defined(__COMPILER_VER__)
# define COMPILER_ID "zOS"
/* __IBMC__ = VRP */
# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100)
# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10)
# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10)
#elif defined(__open_xl__) && defined(__clang__)
# define COMPILER_ID "IBMClang"
# define COMPILER_VERSION_MAJOR DEC(__open_xl_version__)
# define COMPILER_VERSION_MINOR DEC(__open_xl_release__)
# define COMPILER_VERSION_PATCH DEC(__open_xl_modification__)
# define COMPILER_VERSION_TWEAK DEC(__open_xl_ptf_fix_level__)
# define COMPILER_VERSION_INTERNAL_STR __clang_version__
#elif defined(__ibmxl__) && defined(__clang__)
# define COMPILER_ID "XLClang"
# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__)
# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__)
# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__)
# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__)
#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ >= 800
# define COMPILER_ID "XL"
/* __IBMC__ = VRP */
# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100)
# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10)
# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10)
#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ < 800
# define COMPILER_ID "VisualAge"
/* __IBMC__ = VRP */
# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100)
# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10)
# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10)
#elif defined(__NVCOMPILER)
# define COMPILER_ID "NVHPC"
# define COMPILER_VERSION_MAJOR DEC(__NVCOMPILER_MAJOR__)
# define COMPILER_VERSION_MINOR DEC(__NVCOMPILER_MINOR__)
# if defined(__NVCOMPILER_PATCHLEVEL__)
# define COMPILER_VERSION_PATCH DEC(__NVCOMPILER_PATCHLEVEL__)
# endif
#elif defined(__PGI)
# define COMPILER_ID "PGI"
# define COMPILER_VERSION_MAJOR DEC(__PGIC__)
# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__)
# if defined(__PGIC_PATCHLEVEL__)
# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__)
# endif
#elif defined(__clang__) && defined(__cray__)
# define COMPILER_ID "CrayClang"
# define COMPILER_VERSION_MAJOR DEC(__cray_major__)
# define COMPILER_VERSION_MINOR DEC(__cray_minor__)
# define COMPILER_VERSION_PATCH DEC(__cray_patchlevel__)
# define COMPILER_VERSION_INTERNAL_STR __clang_version__
#elif defined(_CRAYC)
# define COMPILER_ID "Cray"
# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR)
# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR)
#elif defined(__TI_COMPILER_VERSION__)
# define COMPILER_ID "TI"
/* __TI_COMPILER_VERSION__ = VVVRRRPPP */
# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000)
# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000)
# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000)
#elif defined(__CLANG_FUJITSU)
# define COMPILER_ID "FujitsuClang"
# define COMPILER_VERSION_MAJOR DEC(__FCC_major__)
# define COMPILER_VERSION_MINOR DEC(__FCC_minor__)
# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__)
# define COMPILER_VERSION_INTERNAL_STR __clang_version__
#elif defined(__FUJITSU)
# define COMPILER_ID "Fujitsu"
# if defined(__FCC_version__)
# define COMPILER_VERSION __FCC_version__
# elif defined(__FCC_major__)
# define COMPILER_VERSION_MAJOR DEC(__FCC_major__)
# define COMPILER_VERSION_MINOR DEC(__FCC_minor__)
# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__)
# endif
# if defined(__fcc_version)
# define COMPILER_VERSION_INTERNAL DEC(__fcc_version)
# elif defined(__FCC_VERSION)
# define COMPILER_VERSION_INTERNAL DEC(__FCC_VERSION)
# endif
#elif defined(__ghs__)
# define COMPILER_ID "GHS"
/* __GHS_VERSION_NUMBER = VVVVRP */
# ifdef __GHS_VERSION_NUMBER
# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100)
# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10)
# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10)
# endif
#elif defined(__TASKING__)
# define COMPILER_ID "Tasking"
# define COMPILER_VERSION_MAJOR DEC(__VERSION__/1000)
# define COMPILER_VERSION_MINOR DEC(__VERSION__ % 100)
# define COMPILER_VERSION_INTERNAL DEC(__VERSION__)
#elif defined(__ORANGEC__)
# define COMPILER_ID "OrangeC"
# define COMPILER_VERSION_MAJOR DEC(__ORANGEC_MAJOR__)
# define COMPILER_VERSION_MINOR DEC(__ORANGEC_MINOR__)
# define COMPILER_VERSION_PATCH DEC(__ORANGEC_PATCHLEVEL__)
#elif defined(__RENESAS__)
# define COMPILER_ID "Renesas"
/* __RENESAS_VERSION__ = 0xVVRRPP00 */
# define COMPILER_VERSION_MAJOR HEX(__RENESAS_VERSION__ >> 24 & 0xFF)
# define COMPILER_VERSION_MINOR HEX(__RENESAS_VERSION__ >> 16 & 0xFF)
# define COMPILER_VERSION_PATCH HEX(__RENESAS_VERSION__ >> 8 & 0xFF)
#elif defined(__TINYC__)
# define COMPILER_ID "TinyCC"
#elif defined(__BCC__)
# define COMPILER_ID "Bruce"
#elif defined(__SCO_VERSION__)
# define COMPILER_ID "SCO"
#elif defined(__ARMCC_VERSION) && !defined(__clang__)
# define COMPILER_ID "ARMCC"
#if __ARMCC_VERSION >= 1000000
/* __ARMCC_VERSION = VRRPPPP */
# define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000)
# define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100)
# define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000)
#else
/* __ARMCC_VERSION = VRPPPP */
# define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000)
# define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10)
# define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000)
#endif
#elif defined(__clang__) && defined(__apple_build_version__)
# define COMPILER_ID "AppleClang"
# if defined(_MSC_VER)
# define SIMULATE_ID "MSVC"
# endif
# define COMPILER_VERSION_MAJOR DEC(__clang_major__)
# define COMPILER_VERSION_MINOR DEC(__clang_minor__)
# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__)
# if defined(_MSC_VER)
/* _MSC_VER = VVRR */
# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
# endif
# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__)
#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION)
# define COMPILER_ID "ARMClang"
# define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000)
# define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100)
# define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION/100 % 100)
# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION)
#elif defined(__clang__) && defined(__ti__)
# define COMPILER_ID "TIClang"
# define COMPILER_VERSION_MAJOR DEC(__ti_major__)
# define COMPILER_VERSION_MINOR DEC(__ti_minor__)
# define COMPILER_VERSION_PATCH DEC(__ti_patchlevel__)
# define COMPILER_VERSION_INTERNAL DEC(__ti_version__)
#elif defined(__clang__)
# define COMPILER_ID "Clang"
# if defined(_MSC_VER)
# define SIMULATE_ID "MSVC"
# endif
# define COMPILER_VERSION_MAJOR DEC(__clang_major__)
# define COMPILER_VERSION_MINOR DEC(__clang_minor__)
# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__)
# if defined(_MSC_VER)
/* _MSC_VER = VVRR */
# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
# endif
#elif defined(__LCC__) && (defined(__GNUC__) || defined(__GNUG__) || defined(__MCST__))
# define COMPILER_ID "LCC"
# define COMPILER_VERSION_MAJOR DEC(__LCC__ / 100)
# define COMPILER_VERSION_MINOR DEC(__LCC__ % 100)
# if defined(__LCC_MINOR__)
# define COMPILER_VERSION_PATCH DEC(__LCC_MINOR__)
# endif
# if defined(__GNUC__) && defined(__GNUC_MINOR__)
# define SIMULATE_ID "GNU"
# define SIMULATE_VERSION_MAJOR DEC(__GNUC__)
# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__)
# if defined(__GNUC_PATCHLEVEL__)
# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)
# endif
# endif
#elif defined(__GNUC__)
# define COMPILER_ID "GNU"
# define COMPILER_VERSION_MAJOR DEC(__GNUC__)
# if defined(__GNUC_MINOR__)
# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__)
# endif
# if defined(__GNUC_PATCHLEVEL__)
# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)
# endif
#elif defined(_MSC_VER)
# define COMPILER_ID "MSVC"
/* _MSC_VER = VVRR */
# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100)
# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100)
# if defined(_MSC_FULL_VER)
# if _MSC_VER >= 1400
/* _MSC_FULL_VER = VVRRPPPPP */
# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000)
# else
/* _MSC_FULL_VER = VVRRPPPP */
# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000)
# endif
# endif
# if defined(_MSC_BUILD)
# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD)
# endif
#elif defined(_ADI_COMPILER)
# define COMPILER_ID "ADSP"
#if defined(__VERSIONNUM__)
/* __VERSIONNUM__ = 0xVVRRPPTT */
# define COMPILER_VERSION_MAJOR DEC(__VERSIONNUM__ >> 24 & 0xFF)
# define COMPILER_VERSION_MINOR DEC(__VERSIONNUM__ >> 16 & 0xFF)
# define COMPILER_VERSION_PATCH DEC(__VERSIONNUM__ >> 8 & 0xFF)
# define COMPILER_VERSION_TWEAK DEC(__VERSIONNUM__ & 0xFF)
#endif
#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC)
# define COMPILER_ID "IAR"
# if defined(__VER__) && defined(__ICCARM__)
# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000)
# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000)
# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000)
# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__)
# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__) || defined(__ICCSTM8__))
# define COMPILER_VERSION_MAJOR DEC((__VER__) / 100)
# define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100))
# define COMPILER_VERSION_PATCH DEC(__SUBVERSION__)
# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__)
# endif
#elif defined(__DCC__) && defined(_DIAB_TOOL)
# define COMPILER_ID "Diab"
# define COMPILER_VERSION_MAJOR DEC(__VERSION_MAJOR_NUMBER__)
# define COMPILER_VERSION_MINOR DEC(__VERSION_MINOR_NUMBER__)
# define COMPILER_VERSION_PATCH DEC(__VERSION_ARCH_FEATURE_NUMBER__)
# define COMPILER_VERSION_TWEAK DEC(__VERSION_BUG_FIX_NUMBER__)
#elif defined(__SDCC_VERSION_MAJOR) || defined(SDCC)
# define COMPILER_ID "SDCC"
# if defined(__SDCC_VERSION_MAJOR)
# define COMPILER_VERSION_MAJOR DEC(__SDCC_VERSION_MAJOR)
# define COMPILER_VERSION_MINOR DEC(__SDCC_VERSION_MINOR)
# define COMPILER_VERSION_PATCH DEC(__SDCC_VERSION_PATCH)
# else
/* SDCC = VRP */
# define COMPILER_VERSION_MAJOR DEC(SDCC/100)
# define COMPILER_VERSION_MINOR DEC(SDCC/10 % 10)
# define COMPILER_VERSION_PATCH DEC(SDCC % 10)
# endif
/* These compilers are either not known or too old to define an
identification macro. Try to identify the platform and guess that
it is the native compiler. */
#elif defined(__hpux) || defined(__hpua)
# define COMPILER_ID "HP"
#else /* unknown compiler */
# define COMPILER_ID ""
#endif
/* Construct the string literal in pieces to prevent the source from
getting matched. Store it in a pointer rather than an array
because some compilers will just produce instructions to fill the
array rather than assigning a pointer to a static array. */
char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]";
#ifdef SIMULATE_ID
char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]";
#endif
#ifdef __QNXNTO__
char const* qnxnto = "INFO" ":" "qnxnto[]";
#endif
#if defined(__CRAYXT_COMPUTE_LINUX_TARGET)
char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]";
#endif
#define STRINGIFY_HELPER(X) #X
#define STRINGIFY(X) STRINGIFY_HELPER(X)
/* Identify known platforms by name. */
#if defined(__linux) || defined(__linux__) || defined(linux)
# define PLATFORM_ID "Linux"
#elif defined(__MSYS__)
# define PLATFORM_ID "MSYS"
#elif defined(__CYGWIN__)
# define PLATFORM_ID "Cygwin"
#elif defined(__MINGW32__)
# define PLATFORM_ID "MinGW"
#elif defined(__APPLE__)
# define PLATFORM_ID "Darwin"
#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32)
# define PLATFORM_ID "Windows"
#elif defined(__FreeBSD__) || defined(__FreeBSD)
# define PLATFORM_ID "FreeBSD"
#elif defined(__NetBSD__) || defined(__NetBSD)
# define PLATFORM_ID "NetBSD"
#elif defined(__OpenBSD__) || defined(__OPENBSD)
# define PLATFORM_ID "OpenBSD"
#elif defined(__sun) || defined(sun)
# define PLATFORM_ID "SunOS"
#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__)
# define PLATFORM_ID "AIX"
#elif defined(__hpux) || defined(__hpux__)
# define PLATFORM_ID "HP-UX"
#elif defined(__HAIKU__)
# define PLATFORM_ID "Haiku"
#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS)
# define PLATFORM_ID "BeOS"
#elif defined(__QNX__) || defined(__QNXNTO__)
# define PLATFORM_ID "QNX"
#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__)
# define PLATFORM_ID "Tru64"
#elif defined(__riscos) || defined(__riscos__)
# define PLATFORM_ID "RISCos"
#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__)
# define PLATFORM_ID "SINIX"
#elif defined(__UNIX_SV__)
# define PLATFORM_ID "UNIX_SV"
#elif defined(__bsdos__)
# define PLATFORM_ID "BSDOS"
#elif defined(_MPRAS) || defined(MPRAS)
# define PLATFORM_ID "MP-RAS"
#elif defined(__osf) || defined(__osf__)
# define PLATFORM_ID "OSF1"
#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv)
# define PLATFORM_ID "SCO_SV"
#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX)
# define PLATFORM_ID "ULTRIX"
#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX)
# define PLATFORM_ID "Xenix"
#elif defined(__WATCOMC__)
# if defined(__LINUX__)
# define PLATFORM_ID "Linux"
# elif defined(__DOS__)
# define PLATFORM_ID "DOS"
# elif defined(__OS2__)
# define PLATFORM_ID "OS2"
# elif defined(__WINDOWS__)
# define PLATFORM_ID "Windows3x"
# elif defined(__VXWORKS__)
# define PLATFORM_ID "VxWorks"
# else /* unknown platform */
# define PLATFORM_ID
# endif
#elif defined(__INTEGRITY)
# if defined(INT_178B)
# define PLATFORM_ID "Integrity178"
# else /* regular Integrity */
# define PLATFORM_ID "Integrity"
# endif
# elif defined(_ADI_COMPILER)
# define PLATFORM_ID "ADSP"
#else /* unknown platform */
# define PLATFORM_ID
#endif
/* For windows compilers MSVC and Intel we can determine
the architecture of the compiler being used. This is because
the compilers do not have flags that can change the architecture,
but rather depend on which compiler is being used
*/
#if defined(_WIN32) && defined(_MSC_VER)
# if defined(_M_IA64)
# define ARCHITECTURE_ID "IA64"
# elif defined(_M_ARM64EC)
# define ARCHITECTURE_ID "ARM64EC"
# elif defined(_M_X64) || defined(_M_AMD64)
# define ARCHITECTURE_ID "x64"
# elif defined(_M_IX86)
# define ARCHITECTURE_ID "X86"
# elif defined(_M_ARM64)
# define ARCHITECTURE_ID "ARM64"
# elif defined(_M_ARM)
# if _M_ARM == 4
# define ARCHITECTURE_ID "ARMV4I"
# elif _M_ARM == 5
# define ARCHITECTURE_ID "ARMV5I"
# else
# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM)
# endif
# elif defined(_M_MIPS)
# define ARCHITECTURE_ID "MIPS"
# elif defined(_M_SH)
# define ARCHITECTURE_ID "SHx"
# else /* unknown architecture */
# define ARCHITECTURE_ID ""
# endif
#elif defined(__WATCOMC__)
# if defined(_M_I86)
# define ARCHITECTURE_ID "I86"
# elif defined(_M_IX86)
# define ARCHITECTURE_ID "X86"
# else /* unknown architecture */
# define ARCHITECTURE_ID ""
# endif
#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC)
# if defined(__ICCARM__)
# define ARCHITECTURE_ID "ARM"
# elif defined(__ICCRX__)
# define ARCHITECTURE_ID "RX"
# elif defined(__ICCRH850__)
# define ARCHITECTURE_ID "RH850"
# elif defined(__ICCRL78__)
# define ARCHITECTURE_ID "RL78"
# elif defined(__ICCRISCV__)
# define ARCHITECTURE_ID "RISCV"
# elif defined(__ICCAVR__)
# define ARCHITECTURE_ID "AVR"
# elif defined(__ICC430__)
# define ARCHITECTURE_ID "MSP430"
# elif defined(__ICCV850__)
# define ARCHITECTURE_ID "V850"
# elif defined(__ICC8051__)
# define ARCHITECTURE_ID "8051"
# elif defined(__ICCSTM8__)
# define ARCHITECTURE_ID "STM8"
# else /* unknown architecture */
# define ARCHITECTURE_ID ""
# endif
#elif defined(__ghs__)
# if defined(__PPC64__)
# define ARCHITECTURE_ID "PPC64"
# elif defined(__ppc__)
# define ARCHITECTURE_ID "PPC"
# elif defined(__ARM__)
# define ARCHITECTURE_ID "ARM"
# elif defined(__x86_64__)
# define ARCHITECTURE_ID "x64"
# elif defined(__i386__)
# define ARCHITECTURE_ID "X86"
# else /* unknown architecture */
# define ARCHITECTURE_ID ""
# endif
#elif defined(__clang__) && defined(__ti__)
# if defined(__ARM_ARCH)
# define ARCHITECTURE_ID "ARM"
# else /* unknown architecture */
# define ARCHITECTURE_ID ""
# endif
#elif defined(__TI_COMPILER_VERSION__)
# if defined(__TI_ARM__)
# define ARCHITECTURE_ID "ARM"
# elif defined(__MSP430__)
# define ARCHITECTURE_ID "MSP430"
# elif defined(__TMS320C28XX__)
# define ARCHITECTURE_ID "TMS320C28x"
# elif defined(__TMS320C6X__) || defined(_TMS320C6X)
# define ARCHITECTURE_ID "TMS320C6x"
# else /* unknown architecture */
# define ARCHITECTURE_ID ""
# endif
# elif defined(__ADSPSHARC__)
# define ARCHITECTURE_ID "SHARC"
# elif defined(__ADSPBLACKFIN__)
# define ARCHITECTURE_ID "Blackfin"
#elif defined(__TASKING__)
# if defined(__CTC__) || defined(__CPTC__)
# define ARCHITECTURE_ID "TriCore"
# elif defined(__CMCS__)
# define ARCHITECTURE_ID "MCS"
# elif defined(__CARM__) || defined(__CPARM__)
# define ARCHITECTURE_ID "ARM"
# elif defined(__CARC__)
# define ARCHITECTURE_ID "ARC"
# elif defined(__C51__)
# define ARCHITECTURE_ID "8051"
# elif defined(__CPCP__)
# define ARCHITECTURE_ID "PCP"
# else
# define ARCHITECTURE_ID ""
# endif
#elif defined(__RENESAS__)
# if defined(__CCRX__)
# define ARCHITECTURE_ID "RX"
# elif defined(__CCRL__)
# define ARCHITECTURE_ID "RL78"
# elif defined(__CCRH__)
# define ARCHITECTURE_ID "RH850"
# else
# define ARCHITECTURE_ID ""
# endif
#else
# define ARCHITECTURE_ID
#endif
/* Convert integer to decimal digit literals. */
#define DEC(n) \
('0' + (((n) / 10000000)%10)), \
('0' + (((n) / 1000000)%10)), \
('0' + (((n) / 100000)%10)), \
('0' + (((n) / 10000)%10)), \
('0' + (((n) / 1000)%10)), \
('0' + (((n) / 100)%10)), \
('0' + (((n) / 10)%10)), \
('0' + ((n) % 10))
/* Convert integer to hex digit literals. */
#define HEX(n) \
('0' + ((n)>>28 & 0xF)), \
('0' + ((n)>>24 & 0xF)), \
('0' + ((n)>>20 & 0xF)), \
('0' + ((n)>>16 & 0xF)), \
('0' + ((n)>>12 & 0xF)), \
('0' + ((n)>>8 & 0xF)), \
('0' + ((n)>>4 & 0xF)), \
('0' + ((n) & 0xF))
/* Construct a string literal encoding the version number. */
#ifdef COMPILER_VERSION
char const* info_version = "INFO" ":" "compiler_version[" COMPILER_VERSION "]";
/* Construct a string literal encoding the version number components. */
#elif defined(COMPILER_VERSION_MAJOR)
char const info_version[] = {
'I', 'N', 'F', 'O', ':',
'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[',
COMPILER_VERSION_MAJOR,
# ifdef COMPILER_VERSION_MINOR
'.', COMPILER_VERSION_MINOR,
# ifdef COMPILER_VERSION_PATCH
'.', COMPILER_VERSION_PATCH,
# ifdef COMPILER_VERSION_TWEAK
'.', COMPILER_VERSION_TWEAK,
# endif
# endif
# endif
']','\0'};
#endif
/* Construct a string literal encoding the internal version number. */
#ifdef COMPILER_VERSION_INTERNAL
char const info_version_internal[] = {
'I', 'N', 'F', 'O', ':',
'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_',
'i','n','t','e','r','n','a','l','[',
COMPILER_VERSION_INTERNAL,']','\0'};
#elif defined(COMPILER_VERSION_INTERNAL_STR)
char const* info_version_internal = "INFO" ":" "compiler_version_internal[" COMPILER_VERSION_INTERNAL_STR "]";
#endif
/* Construct a string literal encoding the version number components. */
#ifdef SIMULATE_VERSION_MAJOR
char const info_simulate_version[] = {
'I', 'N', 'F', 'O', ':',
's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[',
SIMULATE_VERSION_MAJOR,
# ifdef SIMULATE_VERSION_MINOR
'.', SIMULATE_VERSION_MINOR,
# ifdef SIMULATE_VERSION_PATCH
'.', SIMULATE_VERSION_PATCH,
# ifdef SIMULATE_VERSION_TWEAK
'.', SIMULATE_VERSION_TWEAK,
# endif
# endif
# endif
']','\0'};
#endif
/* Construct the string literal in pieces to prevent the source from
getting matched. Store it in a pointer rather than an array
because some compilers will just produce instructions to fill the
array rather than assigning a pointer to a static array. */
char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]";
char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]";
#define C_STD_99 199901L
#define C_STD_11 201112L
#define C_STD_17 201710L
#define C_STD_23 202311L
#ifdef __STDC_VERSION__
# define C_STD __STDC_VERSION__
#endif
#if !defined(__STDC__) && !defined(__clang__) && !defined(__RENESAS__)
# if defined(_MSC_VER) || defined(__ibmxl__) || defined(__IBMC__)
# define C_VERSION "90"
# else
# define C_VERSION
# endif
#elif C_STD > C_STD_17
# define C_VERSION "23"
#elif C_STD > C_STD_11
# define C_VERSION "17"
#elif C_STD > C_STD_99
# define C_VERSION "11"
#elif C_STD >= C_STD_99
# define C_VERSION "99"
#else
# define C_VERSION "90"
#endif
const char* info_language_standard_default =
"INFO" ":" "standard_default[" C_VERSION "]";
const char* info_language_extensions_default = "INFO" ":" "extensions_default["
#if (defined(__clang__) || defined(__GNUC__) || defined(__xlC__) || \
defined(__TI_COMPILER_VERSION__) || defined(__RENESAS__)) && \
!defined(__STRICT_ANSI__)
"ON"
#else
"OFF"
#endif
"]";
/*--------------------------------------------------------------------------*/
#ifdef ID_VOID_MAIN
void main() {}
#else
# if defined(__CLASSIC_C__)
int main(argc, argv) int argc; char *argv[];
# else
int main(int argc, char* argv[])
# endif
{
int require = 0;
require += info_compiler[argc];
require += info_platform[argc];
require += info_arch[argc];
#ifdef COMPILER_VERSION_MAJOR
require += info_version[argc];
#endif
#if defined(COMPILER_VERSION_INTERNAL) || defined(COMPILER_VERSION_INTERNAL_STR)
require += info_version_internal[argc];
#endif
#ifdef SIMULATE_ID
require += info_simulate[argc];
#endif
#ifdef SIMULATE_VERSION_MAJOR
require += info_simulate_version[argc];
#endif
#if defined(__CRAYXT_COMPUTE_LINUX_TARGET)
require += info_cray[argc];
#endif
require += info_language_standard_default[argc];
require += info_language_extensions_default[argc];
(void)argv;
return require;
}
#endif

View File

@@ -0,0 +1 @@
#include <AvailabilityMacros.h>

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,16 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 4.1
# Relative path conversion top directories.
set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3")
set(CMAKE_RELATIVE_PATH_TOP_BINARY "/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release")
# Force unix paths in dependencies.
set(CMAKE_FORCE_UNIX_PATHS 1)
# The C and CXX include file regular expressions for this directory.
set(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$")
set(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$")
set(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN})
set(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN})

View File

@@ -0,0 +1,8 @@
# Hashes of file build rules.
d7b1964f32a49f160d3b47e3400bfbde CMakeFiles/check
a9a9b3979a585516cabd3e2ad3b64cad CMakeFiles/deinstall
4fd5f9140757785940552a82a144ba9a CMakeFiles/distclean
c596c171331d739b68317a3a2e7de067 tests/CMakeFiles/test-vectors
aecfae6d612e1c7a9f34102b819c5964 tests/ref-192000.s32
c7d8bcaf11771ac1584de6ba47359e7b tests/ref-44100.s32
2a95587b080e79b94bc94e9cda8b230a tests/ref-65537.s32

Binary file not shown.

View File

@@ -0,0 +1,10 @@
{
"InstallScripts" :
[
"/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release/cmake_install.cmake",
"/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release/src/cmake_install.cmake",
"/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release/tests/cmake_install.cmake",
"/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release/examples/cmake_install.cmake"
],
"Parallel" : false
}

View File

@@ -0,0 +1,98 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 4.1
# The generator used is:
set(CMAKE_DEPENDS_GENERATOR "Unix Makefiles")
# The top level Makefile was generated from the following files:
set(CMAKE_MAKEFILE_DEPENDS
"CMakeCache.txt"
"/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/CMakeLists.txt"
"CMakeFiles/4.1.1/CMakeCCompiler.cmake"
"CMakeFiles/4.1.1/CMakeSystem.cmake"
"/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/cmake/Modules/FindCFlags.cmake"
"/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/cmake/Modules/FindSIMD32.cmake"
"/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/cmake/Modules/FindSIMD64.cmake"
"/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/cmake/Modules/SetSystemProcessor.cmake"
"/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/deinstall.cmake.in"
"/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/examples/CMakeLists.txt"
"/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/soxr-config.h.in"
"/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/src/CMakeLists.txt"
"/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/src/soxr-lsr.pc.in"
"/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/src/soxr.pc.in"
"/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/tests/CMakeLists.txt"
"/opt/homebrew/share/cmake/Modules/CMakeCInformation.cmake"
"/opt/homebrew/share/cmake/Modules/CMakeCommonLanguageInclude.cmake"
"/opt/homebrew/share/cmake/Modules/CMakeDependentOption.cmake"
"/opt/homebrew/share/cmake/Modules/CMakeGenericSystem.cmake"
"/opt/homebrew/share/cmake/Modules/CMakeInitializeConfigs.cmake"
"/opt/homebrew/share/cmake/Modules/CMakeLanguageInformation.cmake"
"/opt/homebrew/share/cmake/Modules/CMakeSystemSpecificInformation.cmake"
"/opt/homebrew/share/cmake/Modules/CMakeSystemSpecificInitialize.cmake"
"/opt/homebrew/share/cmake/Modules/CPack.cmake"
"/opt/homebrew/share/cmake/Modules/CPackComponent.cmake"
"/opt/homebrew/share/cmake/Modules/CheckCSourceCompiles.cmake"
"/opt/homebrew/share/cmake/Modules/CheckFunctionExists.cmake"
"/opt/homebrew/share/cmake/Modules/CheckIncludeFile.cmake"
"/opt/homebrew/share/cmake/Modules/CheckIncludeFileCXX.cmake"
"/opt/homebrew/share/cmake/Modules/CheckIncludeFiles.cmake"
"/opt/homebrew/share/cmake/Modules/CheckLibraryExists.cmake"
"/opt/homebrew/share/cmake/Modules/CheckTypeSize.cmake"
"/opt/homebrew/share/cmake/Modules/Compiler/AppleClang-C.cmake"
"/opt/homebrew/share/cmake/Modules/Compiler/CMakeCommonCompilerMacros.cmake"
"/opt/homebrew/share/cmake/Modules/Compiler/Clang.cmake"
"/opt/homebrew/share/cmake/Modules/Compiler/GNU.cmake"
"/opt/homebrew/share/cmake/Modules/FindPackageHandleStandardArgs.cmake"
"/opt/homebrew/share/cmake/Modules/FindPackageMessage.cmake"
"/opt/homebrew/share/cmake/Modules/Internal/CMakeCLinkerInformation.cmake"
"/opt/homebrew/share/cmake/Modules/Internal/CMakeCommonLinkerInformation.cmake"
"/opt/homebrew/share/cmake/Modules/Internal/CheckSourceCompiles.cmake"
"/opt/homebrew/share/cmake/Modules/Linker/AppleClang-C.cmake"
"/opt/homebrew/share/cmake/Modules/Linker/AppleClang.cmake"
"/opt/homebrew/share/cmake/Modules/Platform/Apple-AppleClang-C.cmake"
"/opt/homebrew/share/cmake/Modules/Platform/Apple-Clang-C.cmake"
"/opt/homebrew/share/cmake/Modules/Platform/Apple-Clang.cmake"
"/opt/homebrew/share/cmake/Modules/Platform/Darwin-Initialize.cmake"
"/opt/homebrew/share/cmake/Modules/Platform/Darwin.cmake"
"/opt/homebrew/share/cmake/Modules/Platform/Linker/Apple-AppleClang-C.cmake"
"/opt/homebrew/share/cmake/Modules/Platform/Linker/Apple-AppleClang.cmake"
"/opt/homebrew/share/cmake/Modules/Platform/UnixPaths.cmake"
"/opt/homebrew/share/cmake/Modules/TestBigEndian.cmake"
"/opt/homebrew/share/cmake/Templates/CPackConfig.cmake.in"
)
# The corresponding makefile is:
set(CMAKE_MAKEFILE_OUTPUTS
"Makefile"
"CMakeFiles/cmake.check_cache"
)
# Byproducts of CMake generate step:
set(CMAKE_MAKEFILE_PRODUCTS
"soxr-config.h"
"deinstall.cmake"
"CPackConfig.cmake"
"CPackSourceConfig.cmake"
"CMakeFiles/CMakeDirectoryInformation.cmake"
"src/soxr.pc"
"src/soxr-lsr.pc"
"src/CMakeFiles/CMakeDirectoryInformation.cmake"
"tests/CMakeFiles/CMakeDirectoryInformation.cmake"
"examples/CMakeFiles/CMakeDirectoryInformation.cmake"
)
# Dependency information for all targets:
set(CMAKE_DEPEND_INFO_FILES
"CMakeFiles/check.dir/DependInfo.cmake"
"CMakeFiles/distclean.dir/DependInfo.cmake"
"CMakeFiles/deinstall.dir/DependInfo.cmake"
"src/CMakeFiles/soxr.dir/DependInfo.cmake"
"src/CMakeFiles/soxr-lsr.dir/DependInfo.cmake"
"tests/CMakeFiles/1-delay-clear.dir/DependInfo.cmake"
"tests/CMakeFiles/throughput.dir/DependInfo.cmake"
"tests/CMakeFiles/vector-cmp.dir/DependInfo.cmake"
"tests/CMakeFiles/vector-gen.dir/DependInfo.cmake"
"tests/CMakeFiles/test-vectors.dir/DependInfo.cmake"
"examples/CMakeFiles/3-options-input-fn.dir/DependInfo.cmake"
"examples/CMakeFiles/1a-lsr.dir/DependInfo.cmake"
)

View File

@@ -0,0 +1,561 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 4.1
# Default target executed when no arguments are given to make.
default_target: all
.PHONY : default_target
#=============================================================================
# Special targets provided by cmake.
# Disable implicit rules so canonical targets will work.
.SUFFIXES:
# Disable VCS-based implicit rules.
% : %,v
# Disable VCS-based implicit rules.
% : RCS/%
# Disable VCS-based implicit rules.
% : RCS/%,v
# Disable VCS-based implicit rules.
% : SCCS/s.%
# Disable VCS-based implicit rules.
% : s.%
.SUFFIXES: .hpux_make_needs_suffix_list
# Command-line flag to silence nested $(MAKE).
$(VERBOSE)MAKESILENT = -s
#Suppress display of executed commands.
$(VERBOSE).SILENT:
# A target that is always out of date.
cmake_force:
.PHONY : cmake_force
#=============================================================================
# Set environment variables for the build.
# The shell in which to execute make rules.
SHELL = /bin/sh
# The CMake executable.
CMAKE_COMMAND = /opt/homebrew/bin/cmake
# The command to remove a file.
RM = /opt/homebrew/bin/cmake -E rm -f
# Escaping for special characters.
EQUALS = =
# The top-level source directory on which CMake was run.
CMAKE_SOURCE_DIR = /Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3
# The top-level build directory on which CMake was run.
CMAKE_BINARY_DIR = /Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release
#=============================================================================
# Directory level rules for the build root directory
# The main recursive "all" target.
all: src/all
all: tests/all
all: examples/all
.PHONY : all
# The main recursive "codegen" target.
codegen: src/codegen
codegen: tests/codegen
codegen: examples/codegen
.PHONY : codegen
# The main recursive "preinstall" target.
preinstall: src/preinstall
preinstall: tests/preinstall
preinstall: examples/preinstall
.PHONY : preinstall
# The main recursive "clean" target.
clean: CMakeFiles/check.dir/clean
clean: CMakeFiles/distclean.dir/clean
clean: CMakeFiles/deinstall.dir/clean
clean: src/clean
clean: tests/clean
clean: examples/clean
.PHONY : clean
#=============================================================================
# Directory level rules for directory examples
# Recursive "all" directory target.
examples/all: examples/CMakeFiles/3-options-input-fn.dir/all
examples/all: examples/CMakeFiles/1a-lsr.dir/all
.PHONY : examples/all
# Recursive "codegen" directory target.
examples/codegen: examples/CMakeFiles/3-options-input-fn.dir/codegen
examples/codegen: examples/CMakeFiles/1a-lsr.dir/codegen
.PHONY : examples/codegen
# Recursive "preinstall" directory target.
examples/preinstall:
.PHONY : examples/preinstall
# Recursive "clean" directory target.
examples/clean: examples/CMakeFiles/3-options-input-fn.dir/clean
examples/clean: examples/CMakeFiles/1a-lsr.dir/clean
.PHONY : examples/clean
#=============================================================================
# Directory level rules for directory src
# Recursive "all" directory target.
src/all: src/CMakeFiles/soxr.dir/all
src/all: src/CMakeFiles/soxr-lsr.dir/all
.PHONY : src/all
# Recursive "codegen" directory target.
src/codegen: src/CMakeFiles/soxr.dir/codegen
src/codegen: src/CMakeFiles/soxr-lsr.dir/codegen
.PHONY : src/codegen
# Recursive "preinstall" directory target.
src/preinstall:
.PHONY : src/preinstall
# Recursive "clean" directory target.
src/clean: src/CMakeFiles/soxr.dir/clean
src/clean: src/CMakeFiles/soxr-lsr.dir/clean
.PHONY : src/clean
#=============================================================================
# Directory level rules for directory tests
# Recursive "all" directory target.
tests/all: tests/CMakeFiles/1-delay-clear.dir/all
tests/all: tests/CMakeFiles/throughput.dir/all
tests/all: tests/CMakeFiles/vector-cmp.dir/all
tests/all: tests/CMakeFiles/vector-gen.dir/all
tests/all: tests/CMakeFiles/test-vectors.dir/all
.PHONY : tests/all
# Recursive "codegen" directory target.
tests/codegen: tests/CMakeFiles/1-delay-clear.dir/codegen
tests/codegen: tests/CMakeFiles/throughput.dir/codegen
tests/codegen: tests/CMakeFiles/vector-cmp.dir/codegen
tests/codegen: tests/CMakeFiles/vector-gen.dir/codegen
tests/codegen: tests/CMakeFiles/test-vectors.dir/codegen
.PHONY : tests/codegen
# Recursive "preinstall" directory target.
tests/preinstall:
.PHONY : tests/preinstall
# Recursive "clean" directory target.
tests/clean: tests/CMakeFiles/1-delay-clear.dir/clean
tests/clean: tests/CMakeFiles/throughput.dir/clean
tests/clean: tests/CMakeFiles/vector-cmp.dir/clean
tests/clean: tests/CMakeFiles/vector-gen.dir/clean
tests/clean: tests/CMakeFiles/test-vectors.dir/clean
.PHONY : tests/clean
#=============================================================================
# Target rules for target CMakeFiles/check.dir
# All Build rule for target.
CMakeFiles/check.dir/all:
$(MAKE) $(MAKESILENT) -f CMakeFiles/check.dir/build.make CMakeFiles/check.dir/depend
$(MAKE) $(MAKESILENT) -f CMakeFiles/check.dir/build.make CMakeFiles/check.dir/build
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release/CMakeFiles --progress-num= "Built target check"
.PHONY : CMakeFiles/check.dir/all
# Build rule for subdir invocation for target.
CMakeFiles/check.dir/rule: cmake_check_build_system
$(CMAKE_COMMAND) -E cmake_progress_start /Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release/CMakeFiles 0
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/check.dir/all
$(CMAKE_COMMAND) -E cmake_progress_start /Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release/CMakeFiles 0
.PHONY : CMakeFiles/check.dir/rule
# Convenience name for target.
check: CMakeFiles/check.dir/rule
.PHONY : check
# codegen rule for target.
CMakeFiles/check.dir/codegen:
$(MAKE) $(MAKESILENT) -f CMakeFiles/check.dir/build.make CMakeFiles/check.dir/codegen
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release/CMakeFiles --progress-num= "Finished codegen for target check"
.PHONY : CMakeFiles/check.dir/codegen
# clean rule for target.
CMakeFiles/check.dir/clean:
$(MAKE) $(MAKESILENT) -f CMakeFiles/check.dir/build.make CMakeFiles/check.dir/clean
.PHONY : CMakeFiles/check.dir/clean
#=============================================================================
# Target rules for target CMakeFiles/distclean.dir
# All Build rule for target.
CMakeFiles/distclean.dir/all:
$(MAKE) $(MAKESILENT) -f CMakeFiles/distclean.dir/build.make CMakeFiles/distclean.dir/depend
$(MAKE) $(MAKESILENT) -f CMakeFiles/distclean.dir/build.make CMakeFiles/distclean.dir/build
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release/CMakeFiles --progress-num= "Built target distclean"
.PHONY : CMakeFiles/distclean.dir/all
# Build rule for subdir invocation for target.
CMakeFiles/distclean.dir/rule: cmake_check_build_system
$(CMAKE_COMMAND) -E cmake_progress_start /Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release/CMakeFiles 0
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/distclean.dir/all
$(CMAKE_COMMAND) -E cmake_progress_start /Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release/CMakeFiles 0
.PHONY : CMakeFiles/distclean.dir/rule
# Convenience name for target.
distclean: CMakeFiles/distclean.dir/rule
.PHONY : distclean
# codegen rule for target.
CMakeFiles/distclean.dir/codegen:
$(MAKE) $(MAKESILENT) -f CMakeFiles/distclean.dir/build.make CMakeFiles/distclean.dir/codegen
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release/CMakeFiles --progress-num= "Finished codegen for target distclean"
.PHONY : CMakeFiles/distclean.dir/codegen
# clean rule for target.
CMakeFiles/distclean.dir/clean:
$(MAKE) $(MAKESILENT) -f CMakeFiles/distclean.dir/build.make CMakeFiles/distclean.dir/clean
.PHONY : CMakeFiles/distclean.dir/clean
#=============================================================================
# Target rules for target CMakeFiles/deinstall.dir
# All Build rule for target.
CMakeFiles/deinstall.dir/all:
$(MAKE) $(MAKESILENT) -f CMakeFiles/deinstall.dir/build.make CMakeFiles/deinstall.dir/depend
$(MAKE) $(MAKESILENT) -f CMakeFiles/deinstall.dir/build.make CMakeFiles/deinstall.dir/build
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release/CMakeFiles --progress-num= "Built target deinstall"
.PHONY : CMakeFiles/deinstall.dir/all
# Build rule for subdir invocation for target.
CMakeFiles/deinstall.dir/rule: cmake_check_build_system
$(CMAKE_COMMAND) -E cmake_progress_start /Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release/CMakeFiles 0
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/deinstall.dir/all
$(CMAKE_COMMAND) -E cmake_progress_start /Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release/CMakeFiles 0
.PHONY : CMakeFiles/deinstall.dir/rule
# Convenience name for target.
deinstall: CMakeFiles/deinstall.dir/rule
.PHONY : deinstall
# codegen rule for target.
CMakeFiles/deinstall.dir/codegen:
$(MAKE) $(MAKESILENT) -f CMakeFiles/deinstall.dir/build.make CMakeFiles/deinstall.dir/codegen
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release/CMakeFiles --progress-num= "Finished codegen for target deinstall"
.PHONY : CMakeFiles/deinstall.dir/codegen
# clean rule for target.
CMakeFiles/deinstall.dir/clean:
$(MAKE) $(MAKESILENT) -f CMakeFiles/deinstall.dir/build.make CMakeFiles/deinstall.dir/clean
.PHONY : CMakeFiles/deinstall.dir/clean
#=============================================================================
# Target rules for target src/CMakeFiles/soxr.dir
# All Build rule for target.
src/CMakeFiles/soxr.dir/all:
$(MAKE) $(MAKESILENT) -f src/CMakeFiles/soxr.dir/build.make src/CMakeFiles/soxr.dir/depend
$(MAKE) $(MAKESILENT) -f src/CMakeFiles/soxr.dir/build.make src/CMakeFiles/soxr.dir/build
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release/CMakeFiles --progress-num=7,8,9,10,11,12,13,14,15,16,17 "Built target soxr"
.PHONY : src/CMakeFiles/soxr.dir/all
# Build rule for subdir invocation for target.
src/CMakeFiles/soxr.dir/rule: cmake_check_build_system
$(CMAKE_COMMAND) -E cmake_progress_start /Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release/CMakeFiles 11
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 src/CMakeFiles/soxr.dir/all
$(CMAKE_COMMAND) -E cmake_progress_start /Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release/CMakeFiles 0
.PHONY : src/CMakeFiles/soxr.dir/rule
# Convenience name for target.
soxr: src/CMakeFiles/soxr.dir/rule
.PHONY : soxr
# codegen rule for target.
src/CMakeFiles/soxr.dir/codegen:
$(MAKE) $(MAKESILENT) -f src/CMakeFiles/soxr.dir/build.make src/CMakeFiles/soxr.dir/codegen
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release/CMakeFiles --progress-num=7,8,9,10,11,12,13,14,15,16,17 "Finished codegen for target soxr"
.PHONY : src/CMakeFiles/soxr.dir/codegen
# clean rule for target.
src/CMakeFiles/soxr.dir/clean:
$(MAKE) $(MAKESILENT) -f src/CMakeFiles/soxr.dir/build.make src/CMakeFiles/soxr.dir/clean
.PHONY : src/CMakeFiles/soxr.dir/clean
#=============================================================================
# Target rules for target src/CMakeFiles/soxr-lsr.dir
# All Build rule for target.
src/CMakeFiles/soxr-lsr.dir/all: src/CMakeFiles/soxr.dir/all
$(MAKE) $(MAKESILENT) -f src/CMakeFiles/soxr-lsr.dir/build.make src/CMakeFiles/soxr-lsr.dir/depend
$(MAKE) $(MAKESILENT) -f src/CMakeFiles/soxr-lsr.dir/build.make src/CMakeFiles/soxr-lsr.dir/build
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release/CMakeFiles --progress-num=18,19 "Built target soxr-lsr"
.PHONY : src/CMakeFiles/soxr-lsr.dir/all
# Build rule for subdir invocation for target.
src/CMakeFiles/soxr-lsr.dir/rule: cmake_check_build_system
$(CMAKE_COMMAND) -E cmake_progress_start /Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release/CMakeFiles 13
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 src/CMakeFiles/soxr-lsr.dir/all
$(CMAKE_COMMAND) -E cmake_progress_start /Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release/CMakeFiles 0
.PHONY : src/CMakeFiles/soxr-lsr.dir/rule
# Convenience name for target.
soxr-lsr: src/CMakeFiles/soxr-lsr.dir/rule
.PHONY : soxr-lsr
# codegen rule for target.
src/CMakeFiles/soxr-lsr.dir/codegen:
$(MAKE) $(MAKESILENT) -f src/CMakeFiles/soxr-lsr.dir/build.make src/CMakeFiles/soxr-lsr.dir/codegen
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release/CMakeFiles --progress-num=18,19 "Finished codegen for target soxr-lsr"
.PHONY : src/CMakeFiles/soxr-lsr.dir/codegen
# clean rule for target.
src/CMakeFiles/soxr-lsr.dir/clean:
$(MAKE) $(MAKESILENT) -f src/CMakeFiles/soxr-lsr.dir/build.make src/CMakeFiles/soxr-lsr.dir/clean
.PHONY : src/CMakeFiles/soxr-lsr.dir/clean
#=============================================================================
# Target rules for target tests/CMakeFiles/1-delay-clear.dir
# All Build rule for target.
tests/CMakeFiles/1-delay-clear.dir/all: src/CMakeFiles/soxr.dir/all
$(MAKE) $(MAKESILENT) -f tests/CMakeFiles/1-delay-clear.dir/build.make tests/CMakeFiles/1-delay-clear.dir/depend
$(MAKE) $(MAKESILENT) -f tests/CMakeFiles/1-delay-clear.dir/build.make tests/CMakeFiles/1-delay-clear.dir/build
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release/CMakeFiles --progress-num=1,2 "Built target 1-delay-clear"
.PHONY : tests/CMakeFiles/1-delay-clear.dir/all
# Build rule for subdir invocation for target.
tests/CMakeFiles/1-delay-clear.dir/rule: cmake_check_build_system
$(CMAKE_COMMAND) -E cmake_progress_start /Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release/CMakeFiles 13
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 tests/CMakeFiles/1-delay-clear.dir/all
$(CMAKE_COMMAND) -E cmake_progress_start /Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release/CMakeFiles 0
.PHONY : tests/CMakeFiles/1-delay-clear.dir/rule
# Convenience name for target.
1-delay-clear: tests/CMakeFiles/1-delay-clear.dir/rule
.PHONY : 1-delay-clear
# codegen rule for target.
tests/CMakeFiles/1-delay-clear.dir/codegen:
$(MAKE) $(MAKESILENT) -f tests/CMakeFiles/1-delay-clear.dir/build.make tests/CMakeFiles/1-delay-clear.dir/codegen
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release/CMakeFiles --progress-num=1,2 "Finished codegen for target 1-delay-clear"
.PHONY : tests/CMakeFiles/1-delay-clear.dir/codegen
# clean rule for target.
tests/CMakeFiles/1-delay-clear.dir/clean:
$(MAKE) $(MAKESILENT) -f tests/CMakeFiles/1-delay-clear.dir/build.make tests/CMakeFiles/1-delay-clear.dir/clean
.PHONY : tests/CMakeFiles/1-delay-clear.dir/clean
#=============================================================================
# Target rules for target tests/CMakeFiles/throughput.dir
# All Build rule for target.
tests/CMakeFiles/throughput.dir/all: src/CMakeFiles/soxr.dir/all
$(MAKE) $(MAKESILENT) -f tests/CMakeFiles/throughput.dir/build.make tests/CMakeFiles/throughput.dir/depend
$(MAKE) $(MAKESILENT) -f tests/CMakeFiles/throughput.dir/build.make tests/CMakeFiles/throughput.dir/build
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release/CMakeFiles --progress-num=23,24 "Built target throughput"
.PHONY : tests/CMakeFiles/throughput.dir/all
# Build rule for subdir invocation for target.
tests/CMakeFiles/throughput.dir/rule: cmake_check_build_system
$(CMAKE_COMMAND) -E cmake_progress_start /Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release/CMakeFiles 13
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 tests/CMakeFiles/throughput.dir/all
$(CMAKE_COMMAND) -E cmake_progress_start /Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release/CMakeFiles 0
.PHONY : tests/CMakeFiles/throughput.dir/rule
# Convenience name for target.
throughput: tests/CMakeFiles/throughput.dir/rule
.PHONY : throughput
# codegen rule for target.
tests/CMakeFiles/throughput.dir/codegen:
$(MAKE) $(MAKESILENT) -f tests/CMakeFiles/throughput.dir/build.make tests/CMakeFiles/throughput.dir/codegen
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release/CMakeFiles --progress-num=23,24 "Finished codegen for target throughput"
.PHONY : tests/CMakeFiles/throughput.dir/codegen
# clean rule for target.
tests/CMakeFiles/throughput.dir/clean:
$(MAKE) $(MAKESILENT) -f tests/CMakeFiles/throughput.dir/build.make tests/CMakeFiles/throughput.dir/clean
.PHONY : tests/CMakeFiles/throughput.dir/clean
#=============================================================================
# Target rules for target tests/CMakeFiles/vector-cmp.dir
# All Build rule for target.
tests/CMakeFiles/vector-cmp.dir/all: src/CMakeFiles/soxr.dir/all
$(MAKE) $(MAKESILENT) -f tests/CMakeFiles/vector-cmp.dir/build.make tests/CMakeFiles/vector-cmp.dir/depend
$(MAKE) $(MAKESILENT) -f tests/CMakeFiles/vector-cmp.dir/build.make tests/CMakeFiles/vector-cmp.dir/build
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release/CMakeFiles --progress-num=25,26 "Built target vector-cmp"
.PHONY : tests/CMakeFiles/vector-cmp.dir/all
# Build rule for subdir invocation for target.
tests/CMakeFiles/vector-cmp.dir/rule: cmake_check_build_system
$(CMAKE_COMMAND) -E cmake_progress_start /Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release/CMakeFiles 13
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 tests/CMakeFiles/vector-cmp.dir/all
$(CMAKE_COMMAND) -E cmake_progress_start /Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release/CMakeFiles 0
.PHONY : tests/CMakeFiles/vector-cmp.dir/rule
# Convenience name for target.
vector-cmp: tests/CMakeFiles/vector-cmp.dir/rule
.PHONY : vector-cmp
# codegen rule for target.
tests/CMakeFiles/vector-cmp.dir/codegen:
$(MAKE) $(MAKESILENT) -f tests/CMakeFiles/vector-cmp.dir/build.make tests/CMakeFiles/vector-cmp.dir/codegen
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release/CMakeFiles --progress-num=25,26 "Finished codegen for target vector-cmp"
.PHONY : tests/CMakeFiles/vector-cmp.dir/codegen
# clean rule for target.
tests/CMakeFiles/vector-cmp.dir/clean:
$(MAKE) $(MAKESILENT) -f tests/CMakeFiles/vector-cmp.dir/build.make tests/CMakeFiles/vector-cmp.dir/clean
.PHONY : tests/CMakeFiles/vector-cmp.dir/clean
#=============================================================================
# Target rules for target tests/CMakeFiles/vector-gen.dir
# All Build rule for target.
tests/CMakeFiles/vector-gen.dir/all: src/CMakeFiles/soxr.dir/all
$(MAKE) $(MAKESILENT) -f tests/CMakeFiles/vector-gen.dir/build.make tests/CMakeFiles/vector-gen.dir/depend
$(MAKE) $(MAKESILENT) -f tests/CMakeFiles/vector-gen.dir/build.make tests/CMakeFiles/vector-gen.dir/build
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release/CMakeFiles --progress-num=27,28 "Built target vector-gen"
.PHONY : tests/CMakeFiles/vector-gen.dir/all
# Build rule for subdir invocation for target.
tests/CMakeFiles/vector-gen.dir/rule: cmake_check_build_system
$(CMAKE_COMMAND) -E cmake_progress_start /Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release/CMakeFiles 13
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 tests/CMakeFiles/vector-gen.dir/all
$(CMAKE_COMMAND) -E cmake_progress_start /Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release/CMakeFiles 0
.PHONY : tests/CMakeFiles/vector-gen.dir/rule
# Convenience name for target.
vector-gen: tests/CMakeFiles/vector-gen.dir/rule
.PHONY : vector-gen
# codegen rule for target.
tests/CMakeFiles/vector-gen.dir/codegen:
$(MAKE) $(MAKESILENT) -f tests/CMakeFiles/vector-gen.dir/build.make tests/CMakeFiles/vector-gen.dir/codegen
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release/CMakeFiles --progress-num=27,28 "Finished codegen for target vector-gen"
.PHONY : tests/CMakeFiles/vector-gen.dir/codegen
# clean rule for target.
tests/CMakeFiles/vector-gen.dir/clean:
$(MAKE) $(MAKESILENT) -f tests/CMakeFiles/vector-gen.dir/build.make tests/CMakeFiles/vector-gen.dir/clean
.PHONY : tests/CMakeFiles/vector-gen.dir/clean
#=============================================================================
# Target rules for target tests/CMakeFiles/test-vectors.dir
# All Build rule for target.
tests/CMakeFiles/test-vectors.dir/all: tests/CMakeFiles/vector-gen.dir/all
$(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-vectors.dir/build.make tests/CMakeFiles/test-vectors.dir/depend
$(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-vectors.dir/build.make tests/CMakeFiles/test-vectors.dir/build
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release/CMakeFiles --progress-num=20,21,22 "Built target test-vectors"
.PHONY : tests/CMakeFiles/test-vectors.dir/all
# Build rule for subdir invocation for target.
tests/CMakeFiles/test-vectors.dir/rule: cmake_check_build_system
$(CMAKE_COMMAND) -E cmake_progress_start /Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release/CMakeFiles 16
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 tests/CMakeFiles/test-vectors.dir/all
$(CMAKE_COMMAND) -E cmake_progress_start /Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release/CMakeFiles 0
.PHONY : tests/CMakeFiles/test-vectors.dir/rule
# Convenience name for target.
test-vectors: tests/CMakeFiles/test-vectors.dir/rule
.PHONY : test-vectors
# codegen rule for target.
tests/CMakeFiles/test-vectors.dir/codegen: tests/CMakeFiles/vector-gen.dir/all
$(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-vectors.dir/build.make tests/CMakeFiles/test-vectors.dir/codegen
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release/CMakeFiles --progress-num=20,21,22 "Finished codegen for target test-vectors"
.PHONY : tests/CMakeFiles/test-vectors.dir/codegen
# clean rule for target.
tests/CMakeFiles/test-vectors.dir/clean:
$(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-vectors.dir/build.make tests/CMakeFiles/test-vectors.dir/clean
.PHONY : tests/CMakeFiles/test-vectors.dir/clean
#=============================================================================
# Target rules for target examples/CMakeFiles/3-options-input-fn.dir
# All Build rule for target.
examples/CMakeFiles/3-options-input-fn.dir/all: src/CMakeFiles/soxr.dir/all
$(MAKE) $(MAKESILENT) -f examples/CMakeFiles/3-options-input-fn.dir/build.make examples/CMakeFiles/3-options-input-fn.dir/depend
$(MAKE) $(MAKESILENT) -f examples/CMakeFiles/3-options-input-fn.dir/build.make examples/CMakeFiles/3-options-input-fn.dir/build
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release/CMakeFiles --progress-num=5,6 "Built target 3-options-input-fn"
.PHONY : examples/CMakeFiles/3-options-input-fn.dir/all
# Build rule for subdir invocation for target.
examples/CMakeFiles/3-options-input-fn.dir/rule: cmake_check_build_system
$(CMAKE_COMMAND) -E cmake_progress_start /Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release/CMakeFiles 13
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 examples/CMakeFiles/3-options-input-fn.dir/all
$(CMAKE_COMMAND) -E cmake_progress_start /Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release/CMakeFiles 0
.PHONY : examples/CMakeFiles/3-options-input-fn.dir/rule
# Convenience name for target.
3-options-input-fn: examples/CMakeFiles/3-options-input-fn.dir/rule
.PHONY : 3-options-input-fn
# codegen rule for target.
examples/CMakeFiles/3-options-input-fn.dir/codegen:
$(MAKE) $(MAKESILENT) -f examples/CMakeFiles/3-options-input-fn.dir/build.make examples/CMakeFiles/3-options-input-fn.dir/codegen
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release/CMakeFiles --progress-num=5,6 "Finished codegen for target 3-options-input-fn"
.PHONY : examples/CMakeFiles/3-options-input-fn.dir/codegen
# clean rule for target.
examples/CMakeFiles/3-options-input-fn.dir/clean:
$(MAKE) $(MAKESILENT) -f examples/CMakeFiles/3-options-input-fn.dir/build.make examples/CMakeFiles/3-options-input-fn.dir/clean
.PHONY : examples/CMakeFiles/3-options-input-fn.dir/clean
#=============================================================================
# Target rules for target examples/CMakeFiles/1a-lsr.dir
# All Build rule for target.
examples/CMakeFiles/1a-lsr.dir/all: src/CMakeFiles/soxr.dir/all
examples/CMakeFiles/1a-lsr.dir/all: src/CMakeFiles/soxr-lsr.dir/all
$(MAKE) $(MAKESILENT) -f examples/CMakeFiles/1a-lsr.dir/build.make examples/CMakeFiles/1a-lsr.dir/depend
$(MAKE) $(MAKESILENT) -f examples/CMakeFiles/1a-lsr.dir/build.make examples/CMakeFiles/1a-lsr.dir/build
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release/CMakeFiles --progress-num=3,4 "Built target 1a-lsr"
.PHONY : examples/CMakeFiles/1a-lsr.dir/all
# Build rule for subdir invocation for target.
examples/CMakeFiles/1a-lsr.dir/rule: cmake_check_build_system
$(CMAKE_COMMAND) -E cmake_progress_start /Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release/CMakeFiles 15
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 examples/CMakeFiles/1a-lsr.dir/all
$(CMAKE_COMMAND) -E cmake_progress_start /Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release/CMakeFiles 0
.PHONY : examples/CMakeFiles/1a-lsr.dir/rule
# Convenience name for target.
1a-lsr: examples/CMakeFiles/1a-lsr.dir/rule
.PHONY : 1a-lsr
# codegen rule for target.
examples/CMakeFiles/1a-lsr.dir/codegen:
$(MAKE) $(MAKESILENT) -f examples/CMakeFiles/1a-lsr.dir/build.make examples/CMakeFiles/1a-lsr.dir/codegen
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release/CMakeFiles --progress-num=3,4 "Finished codegen for target 1a-lsr"
.PHONY : examples/CMakeFiles/1a-lsr.dir/codegen
# clean rule for target.
examples/CMakeFiles/1a-lsr.dir/clean:
$(MAKE) $(MAKESILENT) -f examples/CMakeFiles/1a-lsr.dir/build.make examples/CMakeFiles/1a-lsr.dir/clean
.PHONY : examples/CMakeFiles/1a-lsr.dir/clean
#=============================================================================
# Special targets to cleanup operation of make.
# Special rule to run CMake to check the build system integrity.
# No rule that depends on this can have commands that come from listfiles
# because they might be regenerated.
cmake_check_build_system:
$(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0
.PHONY : cmake_check_build_system

View File

@@ -0,0 +1,48 @@
/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release/CMakeFiles/check.dir
/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release/CMakeFiles/distclean.dir
/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release/CMakeFiles/deinstall.dir
/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release/CMakeFiles/package.dir
/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release/CMakeFiles/package_source.dir
/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release/CMakeFiles/test.dir
/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release/CMakeFiles/edit_cache.dir
/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release/CMakeFiles/rebuild_cache.dir
/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release/CMakeFiles/list_install_components.dir
/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release/CMakeFiles/install.dir
/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release/CMakeFiles/install/local.dir
/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release/CMakeFiles/install/strip.dir
/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release/src/CMakeFiles/soxr.dir
/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release/src/CMakeFiles/soxr-lsr.dir
/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release/src/CMakeFiles/package.dir
/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release/src/CMakeFiles/package_source.dir
/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release/src/CMakeFiles/test.dir
/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release/src/CMakeFiles/edit_cache.dir
/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release/src/CMakeFiles/rebuild_cache.dir
/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release/src/CMakeFiles/list_install_components.dir
/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release/src/CMakeFiles/install.dir
/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release/src/CMakeFiles/install/local.dir
/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release/src/CMakeFiles/install/strip.dir
/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release/tests/CMakeFiles/1-delay-clear.dir
/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release/tests/CMakeFiles/throughput.dir
/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release/tests/CMakeFiles/vector-cmp.dir
/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release/tests/CMakeFiles/vector-gen.dir
/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release/tests/CMakeFiles/test-vectors.dir
/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release/tests/CMakeFiles/package.dir
/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release/tests/CMakeFiles/package_source.dir
/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release/tests/CMakeFiles/test.dir
/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release/tests/CMakeFiles/edit_cache.dir
/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release/tests/CMakeFiles/rebuild_cache.dir
/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release/tests/CMakeFiles/list_install_components.dir
/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release/tests/CMakeFiles/install.dir
/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release/tests/CMakeFiles/install/local.dir
/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release/tests/CMakeFiles/install/strip.dir
/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release/examples/CMakeFiles/3-options-input-fn.dir
/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release/examples/CMakeFiles/1a-lsr.dir
/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release/examples/CMakeFiles/package.dir
/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release/examples/CMakeFiles/package_source.dir
/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release/examples/CMakeFiles/test.dir
/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release/examples/CMakeFiles/edit_cache.dir
/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release/examples/CMakeFiles/rebuild_cache.dir
/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release/examples/CMakeFiles/list_install_components.dir
/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release/examples/CMakeFiles/install.dir
/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release/examples/CMakeFiles/install/local.dir
/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release/examples/CMakeFiles/install/strip.dir

View File

@@ -0,0 +1,22 @@
# Consider dependencies only in project.
set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF)
# The set of languages for which implicit dependencies are needed:
set(CMAKE_DEPENDS_LANGUAGES
)
# The set of dependency files which are needed:
set(CMAKE_DEPENDS_DEPENDENCY_FILES
)
# Targets to which this target links which contain Fortran sources.
set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES
)
# Targets to which this target links which contain Fortran sources.
set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES
)
# Fortran module output directory.
set(CMAKE_Fortran_TARGET_MODULE_DIR "")

View File

@@ -0,0 +1,90 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 4.1
# Delete rule output on recipe failure.
.DELETE_ON_ERROR:
#=============================================================================
# Special targets provided by cmake.
# Disable implicit rules so canonical targets will work.
.SUFFIXES:
# Disable VCS-based implicit rules.
% : %,v
# Disable VCS-based implicit rules.
% : RCS/%
# Disable VCS-based implicit rules.
% : RCS/%,v
# Disable VCS-based implicit rules.
% : SCCS/s.%
# Disable VCS-based implicit rules.
% : s.%
.SUFFIXES: .hpux_make_needs_suffix_list
# Command-line flag to silence nested $(MAKE).
$(VERBOSE)MAKESILENT = -s
#Suppress display of executed commands.
$(VERBOSE).SILENT:
# A target that is always out of date.
cmake_force:
.PHONY : cmake_force
#=============================================================================
# Set environment variables for the build.
# The shell in which to execute make rules.
SHELL = /bin/sh
# The CMake executable.
CMAKE_COMMAND = /opt/homebrew/bin/cmake
# The command to remove a file.
RM = /opt/homebrew/bin/cmake -E rm -f
# Escaping for special characters.
EQUALS = =
# The top-level source directory on which CMake was run.
CMAKE_SOURCE_DIR = /Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3
# The top-level build directory on which CMake was run.
CMAKE_BINARY_DIR = /Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release
# Utility rule file for check.
# Include any custom commands dependencies for this target.
include CMakeFiles/check.dir/compiler_depend.make
# Include the progress variables for this target.
include CMakeFiles/check.dir/progress.make
CMakeFiles/check:
/opt/homebrew/bin/ctest
CMakeFiles/check.dir/codegen:
.PHONY : CMakeFiles/check.dir/codegen
check: CMakeFiles/check
check: CMakeFiles/check.dir/build.make
.PHONY : check
# Rule to build all files generated by this target.
CMakeFiles/check.dir/build: check
.PHONY : CMakeFiles/check.dir/build
CMakeFiles/check.dir/clean:
$(CMAKE_COMMAND) -P CMakeFiles/check.dir/cmake_clean.cmake
.PHONY : CMakeFiles/check.dir/clean
CMakeFiles/check.dir/depend:
cd /Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3 /Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3 /Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release /Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release /Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release/CMakeFiles/check.dir/DependInfo.cmake "--color=$(COLOR)"
.PHONY : CMakeFiles/check.dir/depend

View File

@@ -0,0 +1,8 @@
file(REMOVE_RECURSE
"CMakeFiles/check"
)
# Per-language clean rules from dependency scanning.
foreach(lang )
include(CMakeFiles/check.dir/cmake_clean_${lang}.cmake OPTIONAL)
endforeach()

View File

@@ -0,0 +1,2 @@
# Empty custom commands generated dependencies file for check.
# This may be replaced when dependencies are built.

View File

@@ -0,0 +1,2 @@
# CMAKE generated file: DO NOT EDIT!
# Timestamp file for custom commands dependencies management for check.

View File

@@ -0,0 +1 @@

View File

@@ -0,0 +1 @@
# This file is generated by cmake for dependency checking of the CMakeCache.txt file

View File

@@ -0,0 +1,22 @@
# Consider dependencies only in project.
set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF)
# The set of languages for which implicit dependencies are needed:
set(CMAKE_DEPENDS_LANGUAGES
)
# The set of dependency files which are needed:
set(CMAKE_DEPENDS_DEPENDENCY_FILES
)
# Targets to which this target links which contain Fortran sources.
set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES
)
# Targets to which this target links which contain Fortran sources.
set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES
)
# Fortran module output directory.
set(CMAKE_Fortran_TARGET_MODULE_DIR "")

View File

@@ -0,0 +1,90 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 4.1
# Delete rule output on recipe failure.
.DELETE_ON_ERROR:
#=============================================================================
# Special targets provided by cmake.
# Disable implicit rules so canonical targets will work.
.SUFFIXES:
# Disable VCS-based implicit rules.
% : %,v
# Disable VCS-based implicit rules.
% : RCS/%
# Disable VCS-based implicit rules.
% : RCS/%,v
# Disable VCS-based implicit rules.
% : SCCS/s.%
# Disable VCS-based implicit rules.
% : s.%
.SUFFIXES: .hpux_make_needs_suffix_list
# Command-line flag to silence nested $(MAKE).
$(VERBOSE)MAKESILENT = -s
#Suppress display of executed commands.
$(VERBOSE).SILENT:
# A target that is always out of date.
cmake_force:
.PHONY : cmake_force
#=============================================================================
# Set environment variables for the build.
# The shell in which to execute make rules.
SHELL = /bin/sh
# The CMake executable.
CMAKE_COMMAND = /opt/homebrew/bin/cmake
# The command to remove a file.
RM = /opt/homebrew/bin/cmake -E rm -f
# Escaping for special characters.
EQUALS = =
# The top-level source directory on which CMake was run.
CMAKE_SOURCE_DIR = /Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3
# The top-level build directory on which CMake was run.
CMAKE_BINARY_DIR = /Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release
# Utility rule file for deinstall.
# Include any custom commands dependencies for this target.
include CMakeFiles/deinstall.dir/compiler_depend.make
# Include the progress variables for this target.
include CMakeFiles/deinstall.dir/progress.make
CMakeFiles/deinstall:
/opt/homebrew/bin/cmake -P /Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release/deinstall.cmake
CMakeFiles/deinstall.dir/codegen:
.PHONY : CMakeFiles/deinstall.dir/codegen
deinstall: CMakeFiles/deinstall
deinstall: CMakeFiles/deinstall.dir/build.make
.PHONY : deinstall
# Rule to build all files generated by this target.
CMakeFiles/deinstall.dir/build: deinstall
.PHONY : CMakeFiles/deinstall.dir/build
CMakeFiles/deinstall.dir/clean:
$(CMAKE_COMMAND) -P CMakeFiles/deinstall.dir/cmake_clean.cmake
.PHONY : CMakeFiles/deinstall.dir/clean
CMakeFiles/deinstall.dir/depend:
cd /Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3 /Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3 /Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release /Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release /Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release/CMakeFiles/deinstall.dir/DependInfo.cmake "--color=$(COLOR)"
.PHONY : CMakeFiles/deinstall.dir/depend

View File

@@ -0,0 +1,8 @@
file(REMOVE_RECURSE
"CMakeFiles/deinstall"
)
# Per-language clean rules from dependency scanning.
foreach(lang )
include(CMakeFiles/deinstall.dir/cmake_clean_${lang}.cmake OPTIONAL)
endforeach()

View File

@@ -0,0 +1,2 @@
# Empty custom commands generated dependencies file for deinstall.
# This may be replaced when dependencies are built.

View File

@@ -0,0 +1,2 @@
# CMAKE generated file: DO NOT EDIT!
# Timestamp file for custom commands dependencies management for deinstall.

View File

@@ -0,0 +1,22 @@
# Consider dependencies only in project.
set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF)
# The set of languages for which implicit dependencies are needed:
set(CMAKE_DEPENDS_LANGUAGES
)
# The set of dependency files which are needed:
set(CMAKE_DEPENDS_DEPENDENCY_FILES
)
# Targets to which this target links which contain Fortran sources.
set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES
)
# Targets to which this target links which contain Fortran sources.
set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES
)
# Fortran module output directory.
set(CMAKE_Fortran_TARGET_MODULE_DIR "")

View File

@@ -0,0 +1,90 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 4.1
# Delete rule output on recipe failure.
.DELETE_ON_ERROR:
#=============================================================================
# Special targets provided by cmake.
# Disable implicit rules so canonical targets will work.
.SUFFIXES:
# Disable VCS-based implicit rules.
% : %,v
# Disable VCS-based implicit rules.
% : RCS/%
# Disable VCS-based implicit rules.
% : RCS/%,v
# Disable VCS-based implicit rules.
% : SCCS/s.%
# Disable VCS-based implicit rules.
% : s.%
.SUFFIXES: .hpux_make_needs_suffix_list
# Command-line flag to silence nested $(MAKE).
$(VERBOSE)MAKESILENT = -s
#Suppress display of executed commands.
$(VERBOSE).SILENT:
# A target that is always out of date.
cmake_force:
.PHONY : cmake_force
#=============================================================================
# Set environment variables for the build.
# The shell in which to execute make rules.
SHELL = /bin/sh
# The CMake executable.
CMAKE_COMMAND = /opt/homebrew/bin/cmake
# The command to remove a file.
RM = /opt/homebrew/bin/cmake -E rm -f
# Escaping for special characters.
EQUALS = =
# The top-level source directory on which CMake was run.
CMAKE_SOURCE_DIR = /Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3
# The top-level build directory on which CMake was run.
CMAKE_BINARY_DIR = /Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release
# Utility rule file for distclean.
# Include any custom commands dependencies for this target.
include CMakeFiles/distclean.dir/compiler_depend.make
# Include the progress variables for this target.
include CMakeFiles/distclean.dir/progress.make
CMakeFiles/distclean:
make clean && find . \! -path \*/Modules/\* \! -name cmp-test.cmake -a -name \*.cmake -o -name CMakeFiles -o -name Makefile -o -name CMakeCache.txt -o -name Testing -o -name cmake_install.cmake -o -name install_manifest.txt -o -path ./soxr-config.h -o -name config.h -o -name \*.pc -o -name \*.s32 | xargs rm -rf
CMakeFiles/distclean.dir/codegen:
.PHONY : CMakeFiles/distclean.dir/codegen
distclean: CMakeFiles/distclean
distclean: CMakeFiles/distclean.dir/build.make
.PHONY : distclean
# Rule to build all files generated by this target.
CMakeFiles/distclean.dir/build: distclean
.PHONY : CMakeFiles/distclean.dir/build
CMakeFiles/distclean.dir/clean:
$(CMAKE_COMMAND) -P CMakeFiles/distclean.dir/cmake_clean.cmake
.PHONY : CMakeFiles/distclean.dir/clean
CMakeFiles/distclean.dir/depend:
cd /Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3 /Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3 /Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release /Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release /Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release/CMakeFiles/distclean.dir/DependInfo.cmake "--color=$(COLOR)"
.PHONY : CMakeFiles/distclean.dir/depend

View File

@@ -0,0 +1,8 @@
file(REMOVE_RECURSE
"CMakeFiles/distclean"
)
# Per-language clean rules from dependency scanning.
foreach(lang )
include(CMakeFiles/distclean.dir/cmake_clean_${lang}.cmake OPTIONAL)
endforeach()

View File

@@ -0,0 +1,2 @@
# Empty custom commands generated dependencies file for distclean.
# This may be replaced when dependencies are built.

View File

@@ -0,0 +1,2 @@
# CMAKE generated file: DO NOT EDIT!
# Timestamp file for custom commands dependencies management for distclean.

View File

@@ -0,0 +1 @@
28

View File

@@ -0,0 +1,75 @@
# This file will be configured to contain variables for CPack. These variables
# should be set in the CMake list file of the project before CPack module is
# included. The list of available CPACK_xxx variables and their associated
# documentation may be obtained using
# cpack --help-variable-list
#
# Some variables are common to all generators (e.g. CPACK_PACKAGE_NAME)
# and some are specific to a generator
# (e.g. CPACK_NSIS_EXTRA_INSTALL_COMMANDS). The generator specific variables
# usually begin with CPACK_<GENNAME>_xxxx.
set(CPACK_BINARY_BUNDLE "OFF")
set(CPACK_BINARY_DEB "OFF")
set(CPACK_BINARY_DRAGNDROP "OFF")
set(CPACK_BINARY_FREEBSD "OFF")
set(CPACK_BINARY_IFW "OFF")
set(CPACK_BINARY_NSIS "OFF")
set(CPACK_BINARY_PRODUCTBUILD "OFF")
set(CPACK_BINARY_RPM "OFF")
set(CPACK_BINARY_STGZ "ON")
set(CPACK_BINARY_TBZ2 "OFF")
set(CPACK_BINARY_TGZ "ON")
set(CPACK_BINARY_TXZ "OFF")
set(CPACK_BUILD_SOURCE_DIRS "/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3;/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release")
set(CPACK_CMAKE_GENERATOR "Unix Makefiles")
set(CPACK_COMPONENT_UNSPECIFIED_HIDDEN "TRUE")
set(CPACK_COMPONENT_UNSPECIFIED_REQUIRED "TRUE")
set(CPACK_DEFAULT_PACKAGE_DESCRIPTION_FILE "/opt/homebrew/share/cmake/Templates/CPack.GenericDescription.txt")
set(CPACK_DEFAULT_PACKAGE_DESCRIPTION_SUMMARY "soxr built using CMake")
set(CPACK_GENERATOR "STGZ;TGZ")
set(CPACK_INNOSETUP_ARCHITECTURE "x64")
set(CPACK_INSTALL_CMAKE_PROJECTS "/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release;soxr;ALL;/")
set(CPACK_INSTALL_PREFIX "/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C")
set(CPACK_MODULE_PATH "/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/cmake/Modules")
set(CPACK_NSIS_DISPLAY_NAME "soxr 0.1.3")
set(CPACK_NSIS_INSTALLER_ICON_CODE "")
set(CPACK_NSIS_INSTALLER_MUI_ICON_CODE "")
set(CPACK_NSIS_INSTALL_ROOT "$PROGRAMFILES")
set(CPACK_NSIS_PACKAGE_NAME "soxr 0.1.3")
set(CPACK_NSIS_UNINSTALL_NAME "Uninstall")
set(CPACK_OBJDUMP_EXECUTABLE "/usr/bin/objdump")
set(CPACK_OUTPUT_CONFIG_FILE "/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release/CPackConfig.cmake")
set(CPACK_PACKAGE_DEFAULT_LOCATION "/")
set(CPACK_PACKAGE_DESCRIPTION_FILE "/opt/homebrew/share/cmake/Templates/CPack.GenericDescription.txt")
set(CPACK_PACKAGE_DESCRIPTION_SUMMARY "soxr built using CMake")
set(CPACK_PACKAGE_FILE_NAME "soxr-0.1.3-Darwin")
set(CPACK_PACKAGE_INSTALL_DIRECTORY "soxr 0.1.3")
set(CPACK_PACKAGE_INSTALL_REGISTRY_KEY "soxr 0.1.3")
set(CPACK_PACKAGE_NAME "soxr")
set(CPACK_PACKAGE_RELOCATABLE "true")
set(CPACK_PACKAGE_VENDOR "Humanity")
set(CPACK_PACKAGE_VERSION "0.1.3")
set(CPACK_PACKAGE_VERSION_MAJOR "0")
set(CPACK_PACKAGE_VERSION_MINOR "1")
set(CPACK_PACKAGE_VERSION_PATCH "3")
set(CPACK_RESOURCE_FILE_LICENSE "/opt/homebrew/share/cmake/Templates/CPack.GenericLicense.txt")
set(CPACK_RESOURCE_FILE_README "/opt/homebrew/share/cmake/Templates/CPack.GenericDescription.txt")
set(CPACK_RESOURCE_FILE_WELCOME "/opt/homebrew/share/cmake/Templates/CPack.GenericWelcome.txt")
set(CPACK_SET_DESTDIR "OFF")
set(CPACK_SOURCE_GENERATOR "TXZ")
set(CPACK_SOURCE_IGNORE_FILES "dist;/lsr-tests/;/Debug.*/;/Release.*/;\\.swp$;\\.git.*;/\\.git/")
set(CPACK_SOURCE_OUTPUT_CONFIG_FILE "/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release/CPackSourceConfig.cmake")
set(CPACK_SYSTEM_NAME "Darwin")
set(CPACK_THREADS "1")
set(CPACK_TOPLEVEL_TAG "Darwin")
set(CPACK_WIX_SIZEOF_VOID_P "8")
if(NOT CPACK_PROPERTIES_FILE)
set(CPACK_PROPERTIES_FILE "/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release/CPackProperties.cmake")
endif()
if(EXISTS ${CPACK_PROPERTIES_FILE})
include(${CPACK_PROPERTIES_FILE})
endif()

View File

@@ -0,0 +1,82 @@
# This file will be configured to contain variables for CPack. These variables
# should be set in the CMake list file of the project before CPack module is
# included. The list of available CPACK_xxx variables and their associated
# documentation may be obtained using
# cpack --help-variable-list
#
# Some variables are common to all generators (e.g. CPACK_PACKAGE_NAME)
# and some are specific to a generator
# (e.g. CPACK_NSIS_EXTRA_INSTALL_COMMANDS). The generator specific variables
# usually begin with CPACK_<GENNAME>_xxxx.
set(CPACK_BINARY_BUNDLE "OFF")
set(CPACK_BINARY_DEB "OFF")
set(CPACK_BINARY_DRAGNDROP "OFF")
set(CPACK_BINARY_FREEBSD "OFF")
set(CPACK_BINARY_IFW "OFF")
set(CPACK_BINARY_NSIS "OFF")
set(CPACK_BINARY_PRODUCTBUILD "OFF")
set(CPACK_BINARY_RPM "OFF")
set(CPACK_BINARY_STGZ "ON")
set(CPACK_BINARY_TBZ2 "OFF")
set(CPACK_BINARY_TGZ "ON")
set(CPACK_BINARY_TXZ "OFF")
set(CPACK_BUILD_SOURCE_DIRS "/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3;/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release")
set(CPACK_CMAKE_GENERATOR "Unix Makefiles")
set(CPACK_COMPONENT_UNSPECIFIED_HIDDEN "TRUE")
set(CPACK_COMPONENT_UNSPECIFIED_REQUIRED "TRUE")
set(CPACK_DEFAULT_PACKAGE_DESCRIPTION_FILE "/opt/homebrew/share/cmake/Templates/CPack.GenericDescription.txt")
set(CPACK_DEFAULT_PACKAGE_DESCRIPTION_SUMMARY "soxr built using CMake")
set(CPACK_GENERATOR "TXZ")
set(CPACK_IGNORE_FILES "dist;/lsr-tests/;/Debug.*/;/Release.*/;\\.swp$;\\.git.*;/\\.git/")
set(CPACK_INNOSETUP_ARCHITECTURE "x64")
set(CPACK_INSTALLED_DIRECTORIES "/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3;/")
set(CPACK_INSTALL_CMAKE_PROJECTS "")
set(CPACK_INSTALL_PREFIX "/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C")
set(CPACK_MODULE_PATH "/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/cmake/Modules")
set(CPACK_NSIS_DISPLAY_NAME "soxr 0.1.3")
set(CPACK_NSIS_INSTALLER_ICON_CODE "")
set(CPACK_NSIS_INSTALLER_MUI_ICON_CODE "")
set(CPACK_NSIS_INSTALL_ROOT "$PROGRAMFILES")
set(CPACK_NSIS_PACKAGE_NAME "soxr 0.1.3")
set(CPACK_NSIS_UNINSTALL_NAME "Uninstall")
set(CPACK_OBJDUMP_EXECUTABLE "/usr/bin/objdump")
set(CPACK_OUTPUT_CONFIG_FILE "/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release/CPackConfig.cmake")
set(CPACK_PACKAGE_DEFAULT_LOCATION "/")
set(CPACK_PACKAGE_DESCRIPTION_FILE "/opt/homebrew/share/cmake/Templates/CPack.GenericDescription.txt")
set(CPACK_PACKAGE_DESCRIPTION_SUMMARY "soxr built using CMake")
set(CPACK_PACKAGE_FILE_NAME "soxr-0.1.3-Source")
set(CPACK_PACKAGE_INSTALL_DIRECTORY "soxr 0.1.3")
set(CPACK_PACKAGE_INSTALL_REGISTRY_KEY "soxr 0.1.3")
set(CPACK_PACKAGE_NAME "soxr")
set(CPACK_PACKAGE_RELOCATABLE "true")
set(CPACK_PACKAGE_VENDOR "Humanity")
set(CPACK_PACKAGE_VERSION "0.1.3")
set(CPACK_PACKAGE_VERSION_MAJOR "0")
set(CPACK_PACKAGE_VERSION_MINOR "1")
set(CPACK_PACKAGE_VERSION_PATCH "3")
set(CPACK_RESOURCE_FILE_LICENSE "/opt/homebrew/share/cmake/Templates/CPack.GenericLicense.txt")
set(CPACK_RESOURCE_FILE_README "/opt/homebrew/share/cmake/Templates/CPack.GenericDescription.txt")
set(CPACK_RESOURCE_FILE_WELCOME "/opt/homebrew/share/cmake/Templates/CPack.GenericWelcome.txt")
set(CPACK_RPM_PACKAGE_SOURCES "ON")
set(CPACK_SET_DESTDIR "OFF")
set(CPACK_SOURCE_GENERATOR "TXZ")
set(CPACK_SOURCE_IGNORE_FILES "dist;/lsr-tests/;/Debug.*/;/Release.*/;\\.swp$;\\.git.*;/\\.git/")
set(CPACK_SOURCE_INSTALLED_DIRECTORIES "/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3;/")
set(CPACK_SOURCE_OUTPUT_CONFIG_FILE "/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release/CPackSourceConfig.cmake")
set(CPACK_SOURCE_PACKAGE_FILE_NAME "soxr-0.1.3-Source")
set(CPACK_SOURCE_TOPLEVEL_TAG "Darwin-Source")
set(CPACK_STRIP_FILES "")
set(CPACK_SYSTEM_NAME "Darwin")
set(CPACK_THREADS "1")
set(CPACK_TOPLEVEL_TAG "Darwin-Source")
set(CPACK_WIX_SIZEOF_VOID_P "8")
if(NOT CPACK_PROPERTIES_FILE)
set(CPACK_PROPERTIES_FILE "/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release/CPackProperties.cmake")
endif()
if(EXISTS ${CPACK_PROPERTIES_FILE})
include(${CPACK_PROPERTIES_FILE})
endif()

View File

@@ -0,0 +1,9 @@
# CMake generated Testfile for
# Source directory: /Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3
# Build directory: /Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release
#
# This file includes the relevant testing commands required for
# testing this directory and lists subdirectories to be tested as well.
subdirs("src")
subdirs("tests")
subdirs("examples")

View File

@@ -0,0 +1,390 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 4.1
# Default target executed when no arguments are given to make.
default_target: all
.PHONY : default_target
# Allow only one "make -f Makefile2" at a time, but pass parallelism.
.NOTPARALLEL:
#=============================================================================
# Special targets provided by cmake.
# Disable implicit rules so canonical targets will work.
.SUFFIXES:
# Disable VCS-based implicit rules.
% : %,v
# Disable VCS-based implicit rules.
% : RCS/%
# Disable VCS-based implicit rules.
% : RCS/%,v
# Disable VCS-based implicit rules.
% : SCCS/s.%
# Disable VCS-based implicit rules.
% : s.%
.SUFFIXES: .hpux_make_needs_suffix_list
# Command-line flag to silence nested $(MAKE).
$(VERBOSE)MAKESILENT = -s
#Suppress display of executed commands.
$(VERBOSE).SILENT:
# A target that is always out of date.
cmake_force:
.PHONY : cmake_force
#=============================================================================
# Set environment variables for the build.
# The shell in which to execute make rules.
SHELL = /bin/sh
# The CMake executable.
CMAKE_COMMAND = /opt/homebrew/bin/cmake
# The command to remove a file.
RM = /opt/homebrew/bin/cmake -E rm -f
# Escaping for special characters.
EQUALS = =
# The top-level source directory on which CMake was run.
CMAKE_SOURCE_DIR = /Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3
# The top-level build directory on which CMake was run.
CMAKE_BINARY_DIR = /Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release
#=============================================================================
# Targets provided globally by CMake.
# Special rule for the target package
package: preinstall
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Run CPack packaging tool..."
/opt/homebrew/bin/cpack --config ./CPackConfig.cmake
.PHONY : package
# Special rule for the target package
package/fast: package
.PHONY : package/fast
# Special rule for the target package_source
package_source:
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Run CPack packaging tool for source..."
/opt/homebrew/bin/cpack --config ./CPackSourceConfig.cmake /Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release/CPackSourceConfig.cmake
.PHONY : package_source
# Special rule for the target package_source
package_source/fast: package_source
.PHONY : package_source/fast
# Special rule for the target test
test:
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running tests..."
/opt/homebrew/bin/ctest $(ARGS)
.PHONY : test
# Special rule for the target test
test/fast: test
.PHONY : test/fast
# Special rule for the target edit_cache
edit_cache:
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake cache editor..."
/opt/homebrew/bin/ccmake -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR)
.PHONY : edit_cache
# Special rule for the target edit_cache
edit_cache/fast: edit_cache
.PHONY : edit_cache/fast
# Special rule for the target rebuild_cache
rebuild_cache:
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake to regenerate build system..."
/opt/homebrew/bin/cmake --regenerate-during-build -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR)
.PHONY : rebuild_cache
# Special rule for the target rebuild_cache
rebuild_cache/fast: rebuild_cache
.PHONY : rebuild_cache/fast
# Special rule for the target list_install_components
list_install_components:
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Available install components are: \"Unspecified\""
.PHONY : list_install_components
# Special rule for the target list_install_components
list_install_components/fast: list_install_components
.PHONY : list_install_components/fast
# Special rule for the target install
install: preinstall
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..."
/opt/homebrew/bin/cmake -P cmake_install.cmake
.PHONY : install
# Special rule for the target install
install/fast: preinstall/fast
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..."
/opt/homebrew/bin/cmake -P cmake_install.cmake
.PHONY : install/fast
# Special rule for the target install/local
install/local: preinstall
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..."
/opt/homebrew/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake
.PHONY : install/local
# Special rule for the target install/local
install/local/fast: preinstall/fast
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..."
/opt/homebrew/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake
.PHONY : install/local/fast
# Special rule for the target install/strip
install/strip: preinstall
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..."
/opt/homebrew/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake
.PHONY : install/strip
# Special rule for the target install/strip
install/strip/fast: preinstall/fast
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..."
/opt/homebrew/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake
.PHONY : install/strip/fast
# The main all target
all: cmake_check_build_system
$(CMAKE_COMMAND) -E cmake_progress_start /Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release/CMakeFiles /Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release//CMakeFiles/progress.marks
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 all
$(CMAKE_COMMAND) -E cmake_progress_start /Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release/CMakeFiles 0
.PHONY : all
# The main clean target
clean:
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 clean
.PHONY : clean
# The main clean target
clean/fast: clean
.PHONY : clean/fast
# Prepare targets for installation.
preinstall: all
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 preinstall
.PHONY : preinstall
# Prepare targets for installation.
preinstall/fast:
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 preinstall
.PHONY : preinstall/fast
# clear depends
depend:
$(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1
.PHONY : depend
#=============================================================================
# Target rules for targets named check
# Build rule for target.
check: cmake_check_build_system
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 check
.PHONY : check
# fast build rule for target.
check/fast:
$(MAKE) $(MAKESILENT) -f CMakeFiles/check.dir/build.make CMakeFiles/check.dir/build
.PHONY : check/fast
#=============================================================================
# Target rules for targets named distclean
# Build rule for target.
distclean: cmake_check_build_system
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 distclean
.PHONY : distclean
# fast build rule for target.
distclean/fast:
$(MAKE) $(MAKESILENT) -f CMakeFiles/distclean.dir/build.make CMakeFiles/distclean.dir/build
.PHONY : distclean/fast
#=============================================================================
# Target rules for targets named deinstall
# Build rule for target.
deinstall: cmake_check_build_system
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 deinstall
.PHONY : deinstall
# fast build rule for target.
deinstall/fast:
$(MAKE) $(MAKESILENT) -f CMakeFiles/deinstall.dir/build.make CMakeFiles/deinstall.dir/build
.PHONY : deinstall/fast
#=============================================================================
# Target rules for targets named soxr
# Build rule for target.
soxr: cmake_check_build_system
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 soxr
.PHONY : soxr
# fast build rule for target.
soxr/fast:
$(MAKE) $(MAKESILENT) -f src/CMakeFiles/soxr.dir/build.make src/CMakeFiles/soxr.dir/build
.PHONY : soxr/fast
#=============================================================================
# Target rules for targets named soxr-lsr
# Build rule for target.
soxr-lsr: cmake_check_build_system
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 soxr-lsr
.PHONY : soxr-lsr
# fast build rule for target.
soxr-lsr/fast:
$(MAKE) $(MAKESILENT) -f src/CMakeFiles/soxr-lsr.dir/build.make src/CMakeFiles/soxr-lsr.dir/build
.PHONY : soxr-lsr/fast
#=============================================================================
# Target rules for targets named 1-delay-clear
# Build rule for target.
1-delay-clear: cmake_check_build_system
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 1-delay-clear
.PHONY : 1-delay-clear
# fast build rule for target.
1-delay-clear/fast:
$(MAKE) $(MAKESILENT) -f tests/CMakeFiles/1-delay-clear.dir/build.make tests/CMakeFiles/1-delay-clear.dir/build
.PHONY : 1-delay-clear/fast
#=============================================================================
# Target rules for targets named throughput
# Build rule for target.
throughput: cmake_check_build_system
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 throughput
.PHONY : throughput
# fast build rule for target.
throughput/fast:
$(MAKE) $(MAKESILENT) -f tests/CMakeFiles/throughput.dir/build.make tests/CMakeFiles/throughput.dir/build
.PHONY : throughput/fast
#=============================================================================
# Target rules for targets named vector-cmp
# Build rule for target.
vector-cmp: cmake_check_build_system
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 vector-cmp
.PHONY : vector-cmp
# fast build rule for target.
vector-cmp/fast:
$(MAKE) $(MAKESILENT) -f tests/CMakeFiles/vector-cmp.dir/build.make tests/CMakeFiles/vector-cmp.dir/build
.PHONY : vector-cmp/fast
#=============================================================================
# Target rules for targets named vector-gen
# Build rule for target.
vector-gen: cmake_check_build_system
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 vector-gen
.PHONY : vector-gen
# fast build rule for target.
vector-gen/fast:
$(MAKE) $(MAKESILENT) -f tests/CMakeFiles/vector-gen.dir/build.make tests/CMakeFiles/vector-gen.dir/build
.PHONY : vector-gen/fast
#=============================================================================
# Target rules for targets named test-vectors
# Build rule for target.
test-vectors: cmake_check_build_system
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 test-vectors
.PHONY : test-vectors
# fast build rule for target.
test-vectors/fast:
$(MAKE) $(MAKESILENT) -f tests/CMakeFiles/test-vectors.dir/build.make tests/CMakeFiles/test-vectors.dir/build
.PHONY : test-vectors/fast
#=============================================================================
# Target rules for targets named 3-options-input-fn
# Build rule for target.
3-options-input-fn: cmake_check_build_system
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 3-options-input-fn
.PHONY : 3-options-input-fn
# fast build rule for target.
3-options-input-fn/fast:
$(MAKE) $(MAKESILENT) -f examples/CMakeFiles/3-options-input-fn.dir/build.make examples/CMakeFiles/3-options-input-fn.dir/build
.PHONY : 3-options-input-fn/fast
#=============================================================================
# Target rules for targets named 1a-lsr
# Build rule for target.
1a-lsr: cmake_check_build_system
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 1a-lsr
.PHONY : 1a-lsr
# fast build rule for target.
1a-lsr/fast:
$(MAKE) $(MAKESILENT) -f examples/CMakeFiles/1a-lsr.dir/build.make examples/CMakeFiles/1a-lsr.dir/build
.PHONY : 1a-lsr/fast
# Help Target
help:
@echo "The following are some of the valid targets for this Makefile:"
@echo "... all (the default if no target is provided)"
@echo "... clean"
@echo "... depend"
@echo "... edit_cache"
@echo "... install"
@echo "... install/local"
@echo "... install/strip"
@echo "... list_install_components"
@echo "... package"
@echo "... package_source"
@echo "... rebuild_cache"
@echo "... test"
@echo "... check"
@echo "... deinstall"
@echo "... distclean"
@echo "... test-vectors"
@echo "... 1-delay-clear"
@echo "... 1a-lsr"
@echo "... 3-options-input-fn"
@echo "... soxr"
@echo "... soxr-lsr"
@echo "... throughput"
@echo "... vector-cmp"
@echo "... vector-gen"
.PHONY : help
#=============================================================================
# Special targets to cleanup operation of make.
# Special rule to run CMake to check the build system integrity.
# No rule that depends on this can have commands that come from listfiles
# because they might be regenerated.
cmake_check_build_system:
$(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0
.PHONY : cmake_check_build_system

View File

@@ -0,0 +1,11 @@
20-bit-perfect-44100-192000 6 0.0264525
20-bit-perfect-192000-44100 6 0.00923554
20-bit-perfect-44100-65537 6 0.0110829
20-bit-perfect-65537-44100 6 0.00885211
28-bit-perfect-44100-192000 6 0.0265365
28-bit-perfect-192000-44100 6 0.0104456
28-bit-perfect-44100-65537 6 0.0133927
28-bit-perfect-65537-44100 6 0.00992985
1-delay-clear 6 0.00114776
lsr-bindings 6 0.000983535
---

View File

@@ -0,0 +1,85 @@
# Install script for directory: /Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3
# Set the install prefix
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
set(CMAKE_INSTALL_PREFIX "/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C")
endif()
string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
# Set the install configuration name.
if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
if(BUILD_TYPE)
string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
else()
set(CMAKE_INSTALL_CONFIG_NAME "Release")
endif()
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
endif()
# Set the component getting installed.
if(NOT CMAKE_INSTALL_COMPONENT)
if(COMPONENT)
message(STATUS "Install component: \"${COMPONENT}\"")
set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
else()
set(CMAKE_INSTALL_COMPONENT)
endif()
endif()
# Is this installation the result of a crosscompile?
if(NOT DEFINED CMAKE_CROSSCOMPILING)
set(CMAKE_CROSSCOMPILING "FALSE")
endif()
# Set path to fallback-tool for dependency-resolution.
if(NOT DEFINED CMAKE_OBJDUMP)
set(CMAKE_OBJDUMP "/usr/bin/objdump")
endif()
if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT)
list(APPEND CMAKE_ABSOLUTE_DESTINATION_FILES
"/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/share/doc/libsoxr/README;/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/share/doc/libsoxr/LICENCE;/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/share/doc/libsoxr/NEWS")
if(CMAKE_WARN_ON_ABSOLUTE_INSTALL_DESTINATION)
message(WARNING "ABSOLUTE path INSTALL DESTINATION : ${CMAKE_ABSOLUTE_DESTINATION_FILES}")
endif()
if(CMAKE_ERROR_ON_ABSOLUTE_INSTALL_DESTINATION)
message(FATAL_ERROR "ABSOLUTE path INSTALL DESTINATION forbidden (by caller): ${CMAKE_ABSOLUTE_DESTINATION_FILES}")
endif()
file(INSTALL DESTINATION "/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/share/doc/libsoxr" TYPE FILE FILES
"/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/README"
"/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/LICENCE"
"/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/NEWS"
)
endif()
if(NOT CMAKE_INSTALL_LOCAL_ONLY)
# Include the install script for each subdirectory.
include("/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release/src/cmake_install.cmake")
include("/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release/tests/cmake_install.cmake")
include("/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release/examples/cmake_install.cmake")
endif()
string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT
"${CMAKE_INSTALL_MANIFEST_FILES}")
if(CMAKE_INSTALL_LOCAL_ONLY)
file(WRITE "/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release/install_local_manifest.txt"
"${CMAKE_INSTALL_MANIFEST_CONTENT}")
endif()
if(CMAKE_INSTALL_COMPONENT)
if(CMAKE_INSTALL_COMPONENT MATCHES "^[a-zA-Z0-9_.+-]+$")
set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INSTALL_COMPONENT}.txt")
else()
string(MD5 CMAKE_INST_COMP_HASH "${CMAKE_INSTALL_COMPONENT}")
set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INST_COMP_HASH}.txt")
unset(CMAKE_INST_COMP_HASH)
endif()
else()
set(CMAKE_INSTALL_MANIFEST "install_manifest.txt")
endif()
if(NOT CMAKE_INSTALL_LOCAL_ONLY)
file(WRITE "/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release/${CMAKE_INSTALL_MANIFEST}"
"${CMAKE_INSTALL_MANIFEST_CONTENT}")
endif()

View File

@@ -0,0 +1,25 @@
# SoX Resampler Library Copyright (c) 2007-13 robs@users.sourceforge.net
# Licence for this file: LGPL v2.1 See LICENCE for details.
if (NOT EXISTS "/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release/install_manifest.txt")
message (FATAL_ERROR "Cannot find install manifest")
endif ()
file (READ "/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release/install_manifest.txt" files)
string (REGEX REPLACE "\n" ";" files "${files}")
foreach (file ${files})
set (dest "$ENV{DESTDIR}${file}")
message (STATUS "Deinstalling \"${dest}\"")
if (EXISTS "${dest}" OR IS_SYMLINK "${dest}")
execute_process (
COMMAND "/opt/homebrew/bin/cmake" -E remove "${dest}"
OUTPUT_VARIABLE rm_out
RESULT_VARIABLE rm_retval
)
if (NOT ${rm_retval} EQUAL 0)
message (FATAL_ERROR "Problem when removing \"${dest}\"")
endif ()
else ()
message (STATUS "File \"${dest}\" does not exist.")
endif ()
endforeach ()

Binary file not shown.

Binary file not shown.

View File

@@ -0,0 +1,23 @@
# Consider dependencies only in project.
set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF)
# The set of languages for which implicit dependencies are needed:
set(CMAKE_DEPENDS_LANGUAGES
)
# The set of dependency files which are needed:
set(CMAKE_DEPENDS_DEPENDENCY_FILES
"/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/examples/1a-lsr.c" "examples/CMakeFiles/1a-lsr.dir/1a-lsr.c.o" "gcc" "examples/CMakeFiles/1a-lsr.dir/1a-lsr.c.o.d"
)
# Targets to which this target links which contain Fortran sources.
set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES
)
# Targets to which this target links which contain Fortran sources.
set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES
)
# Fortran module output directory.
set(CMAKE_Fortran_TARGET_MODULE_DIR "")

View File

@@ -0,0 +1,116 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 4.1
# Delete rule output on recipe failure.
.DELETE_ON_ERROR:
#=============================================================================
# Special targets provided by cmake.
# Disable implicit rules so canonical targets will work.
.SUFFIXES:
# Disable VCS-based implicit rules.
% : %,v
# Disable VCS-based implicit rules.
% : RCS/%
# Disable VCS-based implicit rules.
% : RCS/%,v
# Disable VCS-based implicit rules.
% : SCCS/s.%
# Disable VCS-based implicit rules.
% : s.%
.SUFFIXES: .hpux_make_needs_suffix_list
# Command-line flag to silence nested $(MAKE).
$(VERBOSE)MAKESILENT = -s
#Suppress display of executed commands.
$(VERBOSE).SILENT:
# A target that is always out of date.
cmake_force:
.PHONY : cmake_force
#=============================================================================
# Set environment variables for the build.
# The shell in which to execute make rules.
SHELL = /bin/sh
# The CMake executable.
CMAKE_COMMAND = /opt/homebrew/bin/cmake
# The command to remove a file.
RM = /opt/homebrew/bin/cmake -E rm -f
# Escaping for special characters.
EQUALS = =
# The top-level source directory on which CMake was run.
CMAKE_SOURCE_DIR = /Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3
# The top-level build directory on which CMake was run.
CMAKE_BINARY_DIR = /Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release
# Include any dependencies generated for this target.
include examples/CMakeFiles/1a-lsr.dir/depend.make
# Include any dependencies generated by the compiler for this target.
include examples/CMakeFiles/1a-lsr.dir/compiler_depend.make
# Include the progress variables for this target.
include examples/CMakeFiles/1a-lsr.dir/progress.make
# Include the compile flags for this target's objects.
include examples/CMakeFiles/1a-lsr.dir/flags.make
examples/CMakeFiles/1a-lsr.dir/codegen:
.PHONY : examples/CMakeFiles/1a-lsr.dir/codegen
examples/CMakeFiles/1a-lsr.dir/1a-lsr.c.o: examples/CMakeFiles/1a-lsr.dir/flags.make
examples/CMakeFiles/1a-lsr.dir/1a-lsr.c.o: /Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/examples/1a-lsr.c
examples/CMakeFiles/1a-lsr.dir/1a-lsr.c.o: examples/CMakeFiles/1a-lsr.dir/compiler_depend.ts
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building C object examples/CMakeFiles/1a-lsr.dir/1a-lsr.c.o"
cd /Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release/examples && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT examples/CMakeFiles/1a-lsr.dir/1a-lsr.c.o -MF CMakeFiles/1a-lsr.dir/1a-lsr.c.o.d -o CMakeFiles/1a-lsr.dir/1a-lsr.c.o -c /Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/examples/1a-lsr.c
examples/CMakeFiles/1a-lsr.dir/1a-lsr.c.i: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/1a-lsr.dir/1a-lsr.c.i"
cd /Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release/examples && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/examples/1a-lsr.c > CMakeFiles/1a-lsr.dir/1a-lsr.c.i
examples/CMakeFiles/1a-lsr.dir/1a-lsr.c.s: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/1a-lsr.dir/1a-lsr.c.s"
cd /Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release/examples && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/examples/1a-lsr.c -o CMakeFiles/1a-lsr.dir/1a-lsr.c.s
# Object files for target 1a-lsr
1a__lsr_OBJECTS = \
"CMakeFiles/1a-lsr.dir/1a-lsr.c.o"
# External object files for target 1a-lsr
1a__lsr_EXTERNAL_OBJECTS =
examples/1a-lsr: examples/CMakeFiles/1a-lsr.dir/1a-lsr.c.o
examples/1a-lsr: examples/CMakeFiles/1a-lsr.dir/build.make
examples/1a-lsr: src/libsoxr.a
examples/1a-lsr: src/libsoxr-lsr.a
examples/1a-lsr: src/libsoxr.a
examples/1a-lsr: examples/CMakeFiles/1a-lsr.dir/link.txt
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --bold --progress-dir=/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking C executable 1a-lsr"
cd /Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release/examples && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/1a-lsr.dir/link.txt --verbose=$(VERBOSE)
# Rule to build all files generated by this target.
examples/CMakeFiles/1a-lsr.dir/build: examples/1a-lsr
.PHONY : examples/CMakeFiles/1a-lsr.dir/build
examples/CMakeFiles/1a-lsr.dir/clean:
cd /Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release/examples && $(CMAKE_COMMAND) -P CMakeFiles/1a-lsr.dir/cmake_clean.cmake
.PHONY : examples/CMakeFiles/1a-lsr.dir/clean
examples/CMakeFiles/1a-lsr.dir/depend:
cd /Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3 /Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/examples /Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release /Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release/examples /Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release/examples/CMakeFiles/1a-lsr.dir/DependInfo.cmake "--color=$(COLOR)"
.PHONY : examples/CMakeFiles/1a-lsr.dir/depend

View File

@@ -0,0 +1,11 @@
file(REMOVE_RECURSE
"1a-lsr"
"1a-lsr.pdb"
"CMakeFiles/1a-lsr.dir/1a-lsr.c.o"
"CMakeFiles/1a-lsr.dir/1a-lsr.c.o.d"
)
# Per-language clean rules from dependency scanning.
foreach(lang C)
include(CMakeFiles/1a-lsr.dir/cmake_clean_${lang}.cmake OPTIONAL)
endforeach()

View File

@@ -0,0 +1,121 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 4.1
examples/CMakeFiles/1a-lsr.dir/1a-lsr.c.o
/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/examples/1a-lsr.c
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/Availability.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/AvailabilityInternal.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/AvailabilityInternalLegacy.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/AvailabilityVersions.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/_abort.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/_bounds.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/_ctermid.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/_printf.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/_static_assert.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/_stdio.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/_stdlib.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/_string.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/_strings.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/_types.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/_types/_intmax_t.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/_types/_uint16_t.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/_types/_uint32_t.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/_types/_uint64_t.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/_types/_uint8_t.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/_types/_uintmax_t.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/alloca.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/arm/_endian.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/arm/_limits.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/arm/_mcontext.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/arm/_types.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/arm/endian.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/arm/limits.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/arm/signal.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/arm/types.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/assert.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/errno.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/libkern/_OSByteOrder.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/libkern/arm/_OSByteOrder.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/limits.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/mach/arm/_structs.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/mach/machine/_structs.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/machine/_endian.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/machine/_mcontext.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/machine/_types.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/machine/endian.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/machine/limits.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/machine/signal.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/machine/types.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/malloc/_malloc.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/malloc/_malloc_type.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/malloc/_ptrcheck.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/secure/_common.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/secure/_stdio.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/secure/_string.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/secure/_strings.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/stddef.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/stdint.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/stdio.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/stdlib.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/string.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/__endian.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_endian.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_posix_availability.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_pthread/_pthread_attr_t.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_pthread/_pthread_types.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_symbol_aliasing.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_ct_rune_t.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_dev_t.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_errno_t.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_id_t.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_int16_t.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_int32_t.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_int64_t.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_int8_t.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_intptr_t.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_mode_t.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_null.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_off_t.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_pid_t.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_rsize_t.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_rune_t.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_seek_set.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_sigaltstack.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_sigset_t.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_size_t.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_ssize_t.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_timeval.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_u_int16_t.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_u_int32_t.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_u_int64_t.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_u_int8_t.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_ucontext.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_uid_t.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_uintptr_t.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_va_list.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_wchar_t.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/appleapiopts.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/cdefs.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/errno.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/resource.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/signal.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/stdio.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/syslimits.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/wait.h
/Library/Developer/CommandLineTools/usr/lib/clang/17/include/__stddef_header_macro.h
/Library/Developer/CommandLineTools/usr/lib/clang/17/include/__stddef_max_align_t.h
/Library/Developer/CommandLineTools/usr/lib/clang/17/include/__stddef_null.h
/Library/Developer/CommandLineTools/usr/lib/clang/17/include/__stddef_offsetof.h
/Library/Developer/CommandLineTools/usr/lib/clang/17/include/__stddef_ptrdiff_t.h
/Library/Developer/CommandLineTools/usr/lib/clang/17/include/__stddef_rsize_t.h
/Library/Developer/CommandLineTools/usr/lib/clang/17/include/__stddef_size_t.h
/Library/Developer/CommandLineTools/usr/lib/clang/17/include/__stddef_wchar_t.h
/Library/Developer/CommandLineTools/usr/lib/clang/17/include/limits.h
/Library/Developer/CommandLineTools/usr/lib/clang/17/include/ptrcheck.h
/Library/Developer/CommandLineTools/usr/lib/clang/17/include/stddef.h
/Library/Developer/CommandLineTools/usr/lib/clang/17/include/stdint.h
/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/examples/examples-common.h
/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/src/soxr-lsr.h

View File

@@ -0,0 +1,352 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 4.1
examples/CMakeFiles/1a-lsr.dir/1a-lsr.c.o: /Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/examples/1a-lsr.c \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/Availability.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/AvailabilityInternal.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/AvailabilityInternalLegacy.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/AvailabilityVersions.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/_abort.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/_bounds.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/_ctermid.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/_printf.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/_static_assert.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/_stdio.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/_stdlib.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/_string.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/_strings.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/_types.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/_types/_intmax_t.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/_types/_uint16_t.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/_types/_uint32_t.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/_types/_uint64_t.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/_types/_uint8_t.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/_types/_uintmax_t.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/alloca.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/arm/_endian.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/arm/_limits.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/arm/_mcontext.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/arm/_types.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/arm/endian.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/arm/limits.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/arm/signal.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/arm/types.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/assert.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/errno.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/libkern/_OSByteOrder.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/libkern/arm/_OSByteOrder.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/limits.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/mach/arm/_structs.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/mach/machine/_structs.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/machine/_endian.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/machine/_mcontext.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/machine/_types.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/machine/endian.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/machine/limits.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/machine/signal.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/machine/types.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/malloc/_malloc.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/malloc/_malloc_type.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/malloc/_ptrcheck.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/secure/_common.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/secure/_stdio.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/secure/_string.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/secure/_strings.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/stddef.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/stdint.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/stdio.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/stdlib.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/string.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/__endian.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_endian.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_posix_availability.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_pthread/_pthread_attr_t.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_pthread/_pthread_types.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_symbol_aliasing.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_ct_rune_t.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_dev_t.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_errno_t.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_id_t.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_int16_t.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_int32_t.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_int64_t.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_int8_t.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_intptr_t.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_mode_t.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_null.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_off_t.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_pid_t.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_rsize_t.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_rune_t.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_seek_set.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_sigaltstack.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_sigset_t.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_size_t.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_ssize_t.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_timeval.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_u_int16_t.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_u_int32_t.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_u_int64_t.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_u_int8_t.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_ucontext.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_uid_t.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_uintptr_t.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_va_list.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_wchar_t.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/appleapiopts.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/cdefs.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/errno.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/resource.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/signal.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/stdio.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/syslimits.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/wait.h \
/Library/Developer/CommandLineTools/usr/lib/clang/17/include/__stddef_header_macro.h \
/Library/Developer/CommandLineTools/usr/lib/clang/17/include/__stddef_max_align_t.h \
/Library/Developer/CommandLineTools/usr/lib/clang/17/include/__stddef_null.h \
/Library/Developer/CommandLineTools/usr/lib/clang/17/include/__stddef_offsetof.h \
/Library/Developer/CommandLineTools/usr/lib/clang/17/include/__stddef_ptrdiff_t.h \
/Library/Developer/CommandLineTools/usr/lib/clang/17/include/__stddef_rsize_t.h \
/Library/Developer/CommandLineTools/usr/lib/clang/17/include/__stddef_size_t.h \
/Library/Developer/CommandLineTools/usr/lib/clang/17/include/__stddef_wchar_t.h \
/Library/Developer/CommandLineTools/usr/lib/clang/17/include/limits.h \
/Library/Developer/CommandLineTools/usr/lib/clang/17/include/ptrcheck.h \
/Library/Developer/CommandLineTools/usr/lib/clang/17/include/stddef.h \
/Library/Developer/CommandLineTools/usr/lib/clang/17/include/stdint.h \
/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/examples/examples-common.h \
/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/src/soxr-lsr.h
/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/src/soxr-lsr.h:
/Library/Developer/CommandLineTools/usr/lib/clang/17/include/stdint.h:
/Library/Developer/CommandLineTools/usr/lib/clang/17/include/stddef.h:
/Library/Developer/CommandLineTools/usr/lib/clang/17/include/ptrcheck.h:
/Library/Developer/CommandLineTools/usr/lib/clang/17/include/limits.h:
/Library/Developer/CommandLineTools/usr/lib/clang/17/include/__stddef_wchar_t.h:
/Library/Developer/CommandLineTools/usr/lib/clang/17/include/__stddef_size_t.h:
/Library/Developer/CommandLineTools/usr/lib/clang/17/include/__stddef_rsize_t.h:
/Library/Developer/CommandLineTools/usr/lib/clang/17/include/__stddef_ptrdiff_t.h:
/Library/Developer/CommandLineTools/usr/lib/clang/17/include/__stddef_offsetof.h:
/Library/Developer/CommandLineTools/usr/lib/clang/17/include/__stddef_null.h:
/Library/Developer/CommandLineTools/usr/lib/clang/17/include/__stddef_header_macro.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/wait.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/signal.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/errno.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/cdefs.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/_ctermid.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/appleapiopts.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_wchar_t.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_uintptr_t.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/_types/_uint8_t.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/string.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_uid_t.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_u_int8_t.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_timeval.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_size_t.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_sigaltstack.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_null.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/stdio.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/machine/endian.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_int8_t.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_int64_t.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/_bounds.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/machine/_mcontext.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_int16_t.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/arm/limits.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_ct_rune_t.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_posix_availability.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_u_int32_t.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_symbol_aliasing.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_id_t.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_pthread/_pthread_attr_t.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_u_int16_t.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_ssize_t.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_endian.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/_types.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/__endian.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/stddef.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/stdlib.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/stdio.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_rsize_t.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/_types/_uintmax_t.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_off_t.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/stdint.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_pid_t.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/secure/_strings.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/machine/limits.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/secure/_string.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/secure/_common.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/_string.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/malloc/_malloc_type.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/machine/types.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_intptr_t.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/machine/signal.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/arm/signal.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/mach/arm/_structs.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/malloc/_ptrcheck.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/mach/machine/_structs.h:
/Library/Developer/CommandLineTools/usr/lib/clang/17/include/__stddef_max_align_t.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/libkern/_OSByteOrder.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/limits.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/assert.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/_types/_uint32_t.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/machine/_endian.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/libkern/arm/_OSByteOrder.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/malloc/_malloc.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_rune_t.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/resource.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/secure/_stdio.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_va_list.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/arm/endian.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/arm/_types.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/arm/_endian.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/_stdio.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/alloca.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/_abort.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_u_int64_t.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/_types/_uint64_t.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/_types/_uint16_t.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_seek_set.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/arm/_limits.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/_types/_intmax_t.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/AvailabilityInternalLegacy.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/errno.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_int32_t.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_errno_t.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/AvailabilityInternal.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_mode_t.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/_printf.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/_strings.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/syslimits.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/arm/types.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_sigset_t.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/Availability.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_pthread/_pthread_types.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/_stdlib.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_dev_t.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_ucontext.h:
/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/examples/examples-common.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/arm/_mcontext.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/AvailabilityVersions.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/machine/_types.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/_static_assert.h:
/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/examples/1a-lsr.c:

View File

@@ -0,0 +1,2 @@
# CMAKE generated file: DO NOT EDIT!
# Timestamp file for compiler generated dependencies management for 1a-lsr.

View File

@@ -0,0 +1,2 @@
# Empty dependencies file for 1a-lsr.
# This may be replaced when dependencies are built.

View File

@@ -0,0 +1,12 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 4.1
# compile C with /usr/bin/cc
C_DEFINES =
C_INCLUDES = -I/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release -I/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/src
C_FLAGSarm64 = -O3 -DNDEBUG -arch arm64
C_FLAGS = -O3 -DNDEBUG -arch arm64

View File

@@ -0,0 +1 @@
/usr/bin/cc -O3 -DNDEBUG -arch arm64 -Wl,-search_paths_first -Wl,-headerpad_max_install_names "CMakeFiles/1a-lsr.dir/1a-lsr.c.o" -o 1a-lsr ../src/libsoxr.a -lm ../src/libsoxr-lsr.a ../src/libsoxr.a -lm

View File

@@ -0,0 +1,3 @@
CMAKE_PROGRESS_1 = 3
CMAKE_PROGRESS_2 = 4

View File

@@ -0,0 +1,23 @@
# Consider dependencies only in project.
set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF)
# The set of languages for which implicit dependencies are needed:
set(CMAKE_DEPENDS_LANGUAGES
)
# The set of dependency files which are needed:
set(CMAKE_DEPENDS_DEPENDENCY_FILES
"/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/examples/3-options-input-fn.c" "examples/CMakeFiles/3-options-input-fn.dir/3-options-input-fn.c.o" "gcc" "examples/CMakeFiles/3-options-input-fn.dir/3-options-input-fn.c.o.d"
)
# Targets to which this target links which contain Fortran sources.
set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES
)
# Targets to which this target links which contain Fortran sources.
set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES
)
# Fortran module output directory.
set(CMAKE_Fortran_TARGET_MODULE_DIR "")

View File

@@ -0,0 +1,114 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 4.1
# Delete rule output on recipe failure.
.DELETE_ON_ERROR:
#=============================================================================
# Special targets provided by cmake.
# Disable implicit rules so canonical targets will work.
.SUFFIXES:
# Disable VCS-based implicit rules.
% : %,v
# Disable VCS-based implicit rules.
% : RCS/%
# Disable VCS-based implicit rules.
% : RCS/%,v
# Disable VCS-based implicit rules.
% : SCCS/s.%
# Disable VCS-based implicit rules.
% : s.%
.SUFFIXES: .hpux_make_needs_suffix_list
# Command-line flag to silence nested $(MAKE).
$(VERBOSE)MAKESILENT = -s
#Suppress display of executed commands.
$(VERBOSE).SILENT:
# A target that is always out of date.
cmake_force:
.PHONY : cmake_force
#=============================================================================
# Set environment variables for the build.
# The shell in which to execute make rules.
SHELL = /bin/sh
# The CMake executable.
CMAKE_COMMAND = /opt/homebrew/bin/cmake
# The command to remove a file.
RM = /opt/homebrew/bin/cmake -E rm -f
# Escaping for special characters.
EQUALS = =
# The top-level source directory on which CMake was run.
CMAKE_SOURCE_DIR = /Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3
# The top-level build directory on which CMake was run.
CMAKE_BINARY_DIR = /Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release
# Include any dependencies generated for this target.
include examples/CMakeFiles/3-options-input-fn.dir/depend.make
# Include any dependencies generated by the compiler for this target.
include examples/CMakeFiles/3-options-input-fn.dir/compiler_depend.make
# Include the progress variables for this target.
include examples/CMakeFiles/3-options-input-fn.dir/progress.make
# Include the compile flags for this target's objects.
include examples/CMakeFiles/3-options-input-fn.dir/flags.make
examples/CMakeFiles/3-options-input-fn.dir/codegen:
.PHONY : examples/CMakeFiles/3-options-input-fn.dir/codegen
examples/CMakeFiles/3-options-input-fn.dir/3-options-input-fn.c.o: examples/CMakeFiles/3-options-input-fn.dir/flags.make
examples/CMakeFiles/3-options-input-fn.dir/3-options-input-fn.c.o: /Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/examples/3-options-input-fn.c
examples/CMakeFiles/3-options-input-fn.dir/3-options-input-fn.c.o: examples/CMakeFiles/3-options-input-fn.dir/compiler_depend.ts
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building C object examples/CMakeFiles/3-options-input-fn.dir/3-options-input-fn.c.o"
cd /Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release/examples && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT examples/CMakeFiles/3-options-input-fn.dir/3-options-input-fn.c.o -MF CMakeFiles/3-options-input-fn.dir/3-options-input-fn.c.o.d -o CMakeFiles/3-options-input-fn.dir/3-options-input-fn.c.o -c /Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/examples/3-options-input-fn.c
examples/CMakeFiles/3-options-input-fn.dir/3-options-input-fn.c.i: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/3-options-input-fn.dir/3-options-input-fn.c.i"
cd /Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release/examples && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/examples/3-options-input-fn.c > CMakeFiles/3-options-input-fn.dir/3-options-input-fn.c.i
examples/CMakeFiles/3-options-input-fn.dir/3-options-input-fn.c.s: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/3-options-input-fn.dir/3-options-input-fn.c.s"
cd /Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release/examples && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/examples/3-options-input-fn.c -o CMakeFiles/3-options-input-fn.dir/3-options-input-fn.c.s
# Object files for target 3-options-input-fn
3__options__input__fn_OBJECTS = \
"CMakeFiles/3-options-input-fn.dir/3-options-input-fn.c.o"
# External object files for target 3-options-input-fn
3__options__input__fn_EXTERNAL_OBJECTS =
examples/3-options-input-fn: examples/CMakeFiles/3-options-input-fn.dir/3-options-input-fn.c.o
examples/3-options-input-fn: examples/CMakeFiles/3-options-input-fn.dir/build.make
examples/3-options-input-fn: src/libsoxr.a
examples/3-options-input-fn: examples/CMakeFiles/3-options-input-fn.dir/link.txt
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --bold --progress-dir=/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking C executable 3-options-input-fn"
cd /Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release/examples && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/3-options-input-fn.dir/link.txt --verbose=$(VERBOSE)
# Rule to build all files generated by this target.
examples/CMakeFiles/3-options-input-fn.dir/build: examples/3-options-input-fn
.PHONY : examples/CMakeFiles/3-options-input-fn.dir/build
examples/CMakeFiles/3-options-input-fn.dir/clean:
cd /Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release/examples && $(CMAKE_COMMAND) -P CMakeFiles/3-options-input-fn.dir/cmake_clean.cmake
.PHONY : examples/CMakeFiles/3-options-input-fn.dir/clean
examples/CMakeFiles/3-options-input-fn.dir/depend:
cd /Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3 /Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/examples /Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release /Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release/examples /Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release/examples/CMakeFiles/3-options-input-fn.dir/DependInfo.cmake "--color=$(COLOR)"
.PHONY : examples/CMakeFiles/3-options-input-fn.dir/depend

View File

@@ -0,0 +1,11 @@
file(REMOVE_RECURSE
"3-options-input-fn"
"3-options-input-fn.pdb"
"CMakeFiles/3-options-input-fn.dir/3-options-input-fn.c.o"
"CMakeFiles/3-options-input-fn.dir/3-options-input-fn.c.o.d"
)
# Per-language clean rules from dependency scanning.
foreach(lang C)
include(CMakeFiles/3-options-input-fn.dir/cmake_clean_${lang}.cmake OPTIONAL)
endforeach()

View File

@@ -0,0 +1,121 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 4.1
examples/CMakeFiles/3-options-input-fn.dir/3-options-input-fn.c.o
/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/examples/3-options-input-fn.c
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/Availability.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/AvailabilityInternal.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/AvailabilityInternalLegacy.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/AvailabilityVersions.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/_abort.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/_bounds.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/_ctermid.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/_printf.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/_static_assert.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/_stdio.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/_stdlib.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/_string.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/_strings.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/_types.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/_types/_intmax_t.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/_types/_uint16_t.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/_types/_uint32_t.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/_types/_uint64_t.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/_types/_uint8_t.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/_types/_uintmax_t.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/alloca.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/arm/_endian.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/arm/_limits.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/arm/_mcontext.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/arm/_types.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/arm/endian.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/arm/limits.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/arm/signal.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/arm/types.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/assert.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/errno.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/libkern/_OSByteOrder.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/libkern/arm/_OSByteOrder.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/limits.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/mach/arm/_structs.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/mach/machine/_structs.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/machine/_endian.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/machine/_mcontext.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/machine/_types.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/machine/endian.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/machine/limits.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/machine/signal.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/machine/types.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/malloc/_malloc.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/malloc/_malloc_type.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/malloc/_ptrcheck.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/secure/_common.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/secure/_stdio.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/secure/_string.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/secure/_strings.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/stddef.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/stdint.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/stdio.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/stdlib.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/string.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/__endian.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_endian.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_posix_availability.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_pthread/_pthread_attr_t.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_pthread/_pthread_types.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_symbol_aliasing.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_ct_rune_t.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_dev_t.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_errno_t.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_id_t.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_int16_t.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_int32_t.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_int64_t.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_int8_t.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_intptr_t.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_mode_t.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_null.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_off_t.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_pid_t.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_rsize_t.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_rune_t.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_seek_set.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_sigaltstack.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_sigset_t.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_size_t.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_ssize_t.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_timeval.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_u_int16_t.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_u_int32_t.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_u_int64_t.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_u_int8_t.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_ucontext.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_uid_t.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_uintptr_t.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_va_list.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_wchar_t.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/appleapiopts.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/cdefs.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/errno.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/resource.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/signal.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/stdio.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/syslimits.h
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/wait.h
/Library/Developer/CommandLineTools/usr/lib/clang/17/include/__stddef_header_macro.h
/Library/Developer/CommandLineTools/usr/lib/clang/17/include/__stddef_max_align_t.h
/Library/Developer/CommandLineTools/usr/lib/clang/17/include/__stddef_null.h
/Library/Developer/CommandLineTools/usr/lib/clang/17/include/__stddef_offsetof.h
/Library/Developer/CommandLineTools/usr/lib/clang/17/include/__stddef_ptrdiff_t.h
/Library/Developer/CommandLineTools/usr/lib/clang/17/include/__stddef_rsize_t.h
/Library/Developer/CommandLineTools/usr/lib/clang/17/include/__stddef_size_t.h
/Library/Developer/CommandLineTools/usr/lib/clang/17/include/__stddef_wchar_t.h
/Library/Developer/CommandLineTools/usr/lib/clang/17/include/limits.h
/Library/Developer/CommandLineTools/usr/lib/clang/17/include/ptrcheck.h
/Library/Developer/CommandLineTools/usr/lib/clang/17/include/stddef.h
/Library/Developer/CommandLineTools/usr/lib/clang/17/include/stdint.h
/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/examples/examples-common.h
/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/src/soxr.h

View File

@@ -0,0 +1,352 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 4.1
examples/CMakeFiles/3-options-input-fn.dir/3-options-input-fn.c.o: /Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/examples/3-options-input-fn.c \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/Availability.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/AvailabilityInternal.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/AvailabilityInternalLegacy.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/AvailabilityVersions.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/_abort.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/_bounds.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/_ctermid.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/_printf.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/_static_assert.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/_stdio.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/_stdlib.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/_string.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/_strings.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/_types.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/_types/_intmax_t.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/_types/_uint16_t.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/_types/_uint32_t.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/_types/_uint64_t.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/_types/_uint8_t.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/_types/_uintmax_t.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/alloca.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/arm/_endian.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/arm/_limits.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/arm/_mcontext.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/arm/_types.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/arm/endian.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/arm/limits.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/arm/signal.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/arm/types.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/assert.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/errno.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/libkern/_OSByteOrder.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/libkern/arm/_OSByteOrder.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/limits.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/mach/arm/_structs.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/mach/machine/_structs.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/machine/_endian.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/machine/_mcontext.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/machine/_types.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/machine/endian.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/machine/limits.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/machine/signal.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/machine/types.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/malloc/_malloc.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/malloc/_malloc_type.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/malloc/_ptrcheck.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/secure/_common.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/secure/_stdio.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/secure/_string.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/secure/_strings.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/stddef.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/stdint.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/stdio.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/stdlib.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/string.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/__endian.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_endian.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_posix_availability.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_pthread/_pthread_attr_t.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_pthread/_pthread_types.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_symbol_aliasing.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_ct_rune_t.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_dev_t.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_errno_t.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_id_t.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_int16_t.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_int32_t.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_int64_t.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_int8_t.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_intptr_t.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_mode_t.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_null.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_off_t.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_pid_t.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_rsize_t.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_rune_t.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_seek_set.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_sigaltstack.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_sigset_t.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_size_t.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_ssize_t.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_timeval.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_u_int16_t.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_u_int32_t.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_u_int64_t.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_u_int8_t.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_ucontext.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_uid_t.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_uintptr_t.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_va_list.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_wchar_t.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/appleapiopts.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/cdefs.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/errno.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/resource.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/signal.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/stdio.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/syslimits.h \
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/wait.h \
/Library/Developer/CommandLineTools/usr/lib/clang/17/include/__stddef_header_macro.h \
/Library/Developer/CommandLineTools/usr/lib/clang/17/include/__stddef_max_align_t.h \
/Library/Developer/CommandLineTools/usr/lib/clang/17/include/__stddef_null.h \
/Library/Developer/CommandLineTools/usr/lib/clang/17/include/__stddef_offsetof.h \
/Library/Developer/CommandLineTools/usr/lib/clang/17/include/__stddef_ptrdiff_t.h \
/Library/Developer/CommandLineTools/usr/lib/clang/17/include/__stddef_rsize_t.h \
/Library/Developer/CommandLineTools/usr/lib/clang/17/include/__stddef_size_t.h \
/Library/Developer/CommandLineTools/usr/lib/clang/17/include/__stddef_wchar_t.h \
/Library/Developer/CommandLineTools/usr/lib/clang/17/include/limits.h \
/Library/Developer/CommandLineTools/usr/lib/clang/17/include/ptrcheck.h \
/Library/Developer/CommandLineTools/usr/lib/clang/17/include/stddef.h \
/Library/Developer/CommandLineTools/usr/lib/clang/17/include/stdint.h \
/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/examples/examples-common.h \
/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/src/soxr.h
/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/src/soxr.h:
/Library/Developer/CommandLineTools/usr/lib/clang/17/include/stdint.h:
/Library/Developer/CommandLineTools/usr/lib/clang/17/include/stddef.h:
/Library/Developer/CommandLineTools/usr/lib/clang/17/include/ptrcheck.h:
/Library/Developer/CommandLineTools/usr/lib/clang/17/include/limits.h:
/Library/Developer/CommandLineTools/usr/lib/clang/17/include/__stddef_wchar_t.h:
/Library/Developer/CommandLineTools/usr/lib/clang/17/include/__stddef_size_t.h:
/Library/Developer/CommandLineTools/usr/lib/clang/17/include/__stddef_rsize_t.h:
/Library/Developer/CommandLineTools/usr/lib/clang/17/include/__stddef_ptrdiff_t.h:
/Library/Developer/CommandLineTools/usr/lib/clang/17/include/__stddef_offsetof.h:
/Library/Developer/CommandLineTools/usr/lib/clang/17/include/__stddef_null.h:
/Library/Developer/CommandLineTools/usr/lib/clang/17/include/__stddef_header_macro.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/wait.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/signal.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/errno.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/cdefs.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/_ctermid.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/appleapiopts.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_wchar_t.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_uintptr_t.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/_types/_uint8_t.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/string.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_uid_t.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_u_int8_t.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_timeval.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_size_t.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_sigaltstack.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_null.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/stdio.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/machine/endian.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_int8_t.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_int64_t.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/_bounds.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/machine/_mcontext.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_int16_t.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/arm/limits.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_ct_rune_t.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_posix_availability.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_u_int32_t.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_symbol_aliasing.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_id_t.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_pthread/_pthread_attr_t.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_u_int16_t.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_ssize_t.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_endian.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/_types.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/__endian.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/stddef.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/stdlib.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/stdio.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_rsize_t.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/_types/_uintmax_t.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_off_t.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/stdint.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_pid_t.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/secure/_strings.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/machine/limits.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/secure/_string.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/secure/_common.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/_string.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/malloc/_malloc_type.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/machine/types.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_intptr_t.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/machine/signal.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/arm/signal.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/mach/arm/_structs.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_pthread/_pthread_types.h:
/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/examples/3-options-input-fn.c:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/malloc/_ptrcheck.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/mach/machine/_structs.h:
/Library/Developer/CommandLineTools/usr/lib/clang/17/include/__stddef_max_align_t.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/libkern/_OSByteOrder.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/limits.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/assert.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/_types/_uint32_t.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/machine/_endian.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/libkern/arm/_OSByteOrder.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/malloc/_malloc.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_rune_t.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/resource.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/secure/_stdio.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_va_list.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/arm/endian.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/arm/_endian.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/arm/_types.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/AvailabilityVersions.h:
/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/examples/examples-common.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/arm/_mcontext.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/_stdio.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/alloca.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/_abort.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_u_int64_t.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/_types/_uint64_t.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/_types/_uint16_t.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_seek_set.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/arm/_limits.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/_types/_intmax_t.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_sigset_t.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/AvailabilityInternalLegacy.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/errno.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_int32_t.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_errno_t.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/AvailabilityInternal.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_mode_t.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/_printf.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/_strings.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/syslimits.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/arm/types.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/Availability.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/_stdlib.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_dev_t.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_ucontext.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/machine/_types.h:
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/_static_assert.h:

View File

@@ -0,0 +1,2 @@
# CMAKE generated file: DO NOT EDIT!
# Timestamp file for compiler generated dependencies management for 3-options-input-fn.

View File

@@ -0,0 +1,2 @@
# Empty dependencies file for 3-options-input-fn.
# This may be replaced when dependencies are built.

View File

@@ -0,0 +1,12 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 4.1
# compile C with /usr/bin/cc
C_DEFINES =
C_INCLUDES = -I/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release -I/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/src
C_FLAGSarm64 = -O3 -DNDEBUG -arch arm64
C_FLAGS = -O3 -DNDEBUG -arch arm64

View File

@@ -0,0 +1 @@
/usr/bin/cc -O3 -DNDEBUG -arch arm64 -Wl,-search_paths_first -Wl,-headerpad_max_install_names "CMakeFiles/3-options-input-fn.dir/3-options-input-fn.c.o" -o 3-options-input-fn ../src/libsoxr.a -lm

View File

@@ -0,0 +1,3 @@
CMAKE_PROGRESS_1 = 5
CMAKE_PROGRESS_2 = 6

View File

@@ -0,0 +1,16 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 4.1
# Relative path conversion top directories.
set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3")
set(CMAKE_RELATIVE_PATH_TOP_BINARY "/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release")
# Force unix paths in dependencies.
set(CMAKE_FORCE_UNIX_PATHS 1)
# The C and CXX include file regular expressions for this directory.
set(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$")
set(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$")
set(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN})
set(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN})

View File

@@ -0,0 +1 @@
17

View File

@@ -0,0 +1,8 @@
# CMake generated Testfile for
# Source directory: /Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/examples
# Build directory: /Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release/examples
#
# This file includes the relevant testing commands required for
# testing this directory and lists subdirectories to be tested as well.
add_test(lsr-bindings "./1a-lsr")
set_tests_properties(lsr-bindings PROPERTIES _BACKTRACE_TRIPLES "/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/examples/CMakeLists.txt;31;add_test;/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/examples/CMakeLists.txt;0;")

View File

@@ -0,0 +1,306 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 4.1
# Default target executed when no arguments are given to make.
default_target: all
.PHONY : default_target
# Allow only one "make -f Makefile2" at a time, but pass parallelism.
.NOTPARALLEL:
#=============================================================================
# Special targets provided by cmake.
# Disable implicit rules so canonical targets will work.
.SUFFIXES:
# Disable VCS-based implicit rules.
% : %,v
# Disable VCS-based implicit rules.
% : RCS/%
# Disable VCS-based implicit rules.
% : RCS/%,v
# Disable VCS-based implicit rules.
% : SCCS/s.%
# Disable VCS-based implicit rules.
% : s.%
.SUFFIXES: .hpux_make_needs_suffix_list
# Command-line flag to silence nested $(MAKE).
$(VERBOSE)MAKESILENT = -s
#Suppress display of executed commands.
$(VERBOSE).SILENT:
# A target that is always out of date.
cmake_force:
.PHONY : cmake_force
#=============================================================================
# Set environment variables for the build.
# The shell in which to execute make rules.
SHELL = /bin/sh
# The CMake executable.
CMAKE_COMMAND = /opt/homebrew/bin/cmake
# The command to remove a file.
RM = /opt/homebrew/bin/cmake -E rm -f
# Escaping for special characters.
EQUALS = =
# The top-level source directory on which CMake was run.
CMAKE_SOURCE_DIR = /Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3
# The top-level build directory on which CMake was run.
CMAKE_BINARY_DIR = /Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release
#=============================================================================
# Targets provided globally by CMake.
# Special rule for the target package
package: preinstall
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Run CPack packaging tool..."
cd /Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release && /opt/homebrew/bin/cpack --config ./CPackConfig.cmake
.PHONY : package
# Special rule for the target package
package/fast: package
.PHONY : package/fast
# Special rule for the target package_source
package_source:
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Run CPack packaging tool for source..."
cd /Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release && /opt/homebrew/bin/cpack --config ./CPackSourceConfig.cmake /Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release/CPackSourceConfig.cmake
.PHONY : package_source
# Special rule for the target package_source
package_source/fast: package_source
.PHONY : package_source/fast
# Special rule for the target test
test:
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running tests..."
/opt/homebrew/bin/ctest $(ARGS)
.PHONY : test
# Special rule for the target test
test/fast: test
.PHONY : test/fast
# Special rule for the target edit_cache
edit_cache:
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake cache editor..."
/opt/homebrew/bin/ccmake -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR)
.PHONY : edit_cache
# Special rule for the target edit_cache
edit_cache/fast: edit_cache
.PHONY : edit_cache/fast
# Special rule for the target rebuild_cache
rebuild_cache:
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake to regenerate build system..."
/opt/homebrew/bin/cmake --regenerate-during-build -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR)
.PHONY : rebuild_cache
# Special rule for the target rebuild_cache
rebuild_cache/fast: rebuild_cache
.PHONY : rebuild_cache/fast
# Special rule for the target list_install_components
list_install_components:
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Available install components are: \"Unspecified\""
.PHONY : list_install_components
# Special rule for the target list_install_components
list_install_components/fast: list_install_components
.PHONY : list_install_components/fast
# Special rule for the target install
install: preinstall
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..."
/opt/homebrew/bin/cmake -P cmake_install.cmake
.PHONY : install
# Special rule for the target install
install/fast: preinstall/fast
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..."
/opt/homebrew/bin/cmake -P cmake_install.cmake
.PHONY : install/fast
# Special rule for the target install/local
install/local: preinstall
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..."
/opt/homebrew/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake
.PHONY : install/local
# Special rule for the target install/local
install/local/fast: preinstall/fast
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..."
/opt/homebrew/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake
.PHONY : install/local/fast
# Special rule for the target install/strip
install/strip: preinstall
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..."
/opt/homebrew/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake
.PHONY : install/strip
# Special rule for the target install/strip
install/strip/fast: preinstall/fast
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..."
/opt/homebrew/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake
.PHONY : install/strip/fast
# The main all target
all: cmake_check_build_system
cd /Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release && $(CMAKE_COMMAND) -E cmake_progress_start /Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release/CMakeFiles /Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release/examples//CMakeFiles/progress.marks
cd /Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 examples/all
$(CMAKE_COMMAND) -E cmake_progress_start /Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release/CMakeFiles 0
.PHONY : all
# The main clean target
clean:
cd /Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 examples/clean
.PHONY : clean
# The main clean target
clean/fast: clean
.PHONY : clean/fast
# Prepare targets for installation.
preinstall: all
cd /Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 examples/preinstall
.PHONY : preinstall
# Prepare targets for installation.
preinstall/fast:
cd /Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 examples/preinstall
.PHONY : preinstall/fast
# clear depends
depend:
cd /Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1
.PHONY : depend
# Convenience name for target.
examples/CMakeFiles/3-options-input-fn.dir/rule:
cd /Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 examples/CMakeFiles/3-options-input-fn.dir/rule
.PHONY : examples/CMakeFiles/3-options-input-fn.dir/rule
# Convenience name for target.
3-options-input-fn: examples/CMakeFiles/3-options-input-fn.dir/rule
.PHONY : 3-options-input-fn
# fast build rule for target.
3-options-input-fn/fast:
cd /Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release && $(MAKE) $(MAKESILENT) -f examples/CMakeFiles/3-options-input-fn.dir/build.make examples/CMakeFiles/3-options-input-fn.dir/build
.PHONY : 3-options-input-fn/fast
# Convenience name for target.
examples/CMakeFiles/1a-lsr.dir/rule:
cd /Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 examples/CMakeFiles/1a-lsr.dir/rule
.PHONY : examples/CMakeFiles/1a-lsr.dir/rule
# Convenience name for target.
1a-lsr: examples/CMakeFiles/1a-lsr.dir/rule
.PHONY : 1a-lsr
# fast build rule for target.
1a-lsr/fast:
cd /Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release && $(MAKE) $(MAKESILENT) -f examples/CMakeFiles/1a-lsr.dir/build.make examples/CMakeFiles/1a-lsr.dir/build
.PHONY : 1a-lsr/fast
1a-lsr.o: 1a-lsr.c.o
.PHONY : 1a-lsr.o
# target to build an object file
1a-lsr.c.o:
cd /Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release && $(MAKE) $(MAKESILENT) -f examples/CMakeFiles/1a-lsr.dir/build.make examples/CMakeFiles/1a-lsr.dir/1a-lsr.c.o
.PHONY : 1a-lsr.c.o
1a-lsr.i: 1a-lsr.c.i
.PHONY : 1a-lsr.i
# target to preprocess a source file
1a-lsr.c.i:
cd /Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release && $(MAKE) $(MAKESILENT) -f examples/CMakeFiles/1a-lsr.dir/build.make examples/CMakeFiles/1a-lsr.dir/1a-lsr.c.i
.PHONY : 1a-lsr.c.i
1a-lsr.s: 1a-lsr.c.s
.PHONY : 1a-lsr.s
# target to generate assembly for a file
1a-lsr.c.s:
cd /Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release && $(MAKE) $(MAKESILENT) -f examples/CMakeFiles/1a-lsr.dir/build.make examples/CMakeFiles/1a-lsr.dir/1a-lsr.c.s
.PHONY : 1a-lsr.c.s
3-options-input-fn.o: 3-options-input-fn.c.o
.PHONY : 3-options-input-fn.o
# target to build an object file
3-options-input-fn.c.o:
cd /Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release && $(MAKE) $(MAKESILENT) -f examples/CMakeFiles/3-options-input-fn.dir/build.make examples/CMakeFiles/3-options-input-fn.dir/3-options-input-fn.c.o
.PHONY : 3-options-input-fn.c.o
3-options-input-fn.i: 3-options-input-fn.c.i
.PHONY : 3-options-input-fn.i
# target to preprocess a source file
3-options-input-fn.c.i:
cd /Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release && $(MAKE) $(MAKESILENT) -f examples/CMakeFiles/3-options-input-fn.dir/build.make examples/CMakeFiles/3-options-input-fn.dir/3-options-input-fn.c.i
.PHONY : 3-options-input-fn.c.i
3-options-input-fn.s: 3-options-input-fn.c.s
.PHONY : 3-options-input-fn.s
# target to generate assembly for a file
3-options-input-fn.c.s:
cd /Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release && $(MAKE) $(MAKESILENT) -f examples/CMakeFiles/3-options-input-fn.dir/build.make examples/CMakeFiles/3-options-input-fn.dir/3-options-input-fn.c.s
.PHONY : 3-options-input-fn.c.s
# Help Target
help:
@echo "The following are some of the valid targets for this Makefile:"
@echo "... all (the default if no target is provided)"
@echo "... clean"
@echo "... depend"
@echo "... edit_cache"
@echo "... install"
@echo "... install/local"
@echo "... install/strip"
@echo "... list_install_components"
@echo "... package"
@echo "... package_source"
@echo "... rebuild_cache"
@echo "... test"
@echo "... 1a-lsr"
@echo "... 3-options-input-fn"
@echo "... 1a-lsr.o"
@echo "... 1a-lsr.i"
@echo "... 1a-lsr.s"
@echo "... 3-options-input-fn.o"
@echo "... 3-options-input-fn.i"
@echo "... 3-options-input-fn.s"
.PHONY : help
#=============================================================================
# Special targets to cleanup operation of make.
# Special rule to run CMake to check the build system integrity.
# No rule that depends on this can have commands that come from listfiles
# because they might be regenerated.
cmake_check_build_system:
cd /Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0
.PHONY : cmake_check_build_system

View File

@@ -0,0 +1,66 @@
# Install script for directory: /Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/examples
# Set the install prefix
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
set(CMAKE_INSTALL_PREFIX "/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C")
endif()
string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
# Set the install configuration name.
if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
if(BUILD_TYPE)
string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
else()
set(CMAKE_INSTALL_CONFIG_NAME "Release")
endif()
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
endif()
# Set the component getting installed.
if(NOT CMAKE_INSTALL_COMPONENT)
if(COMPONENT)
message(STATUS "Install component: \"${COMPONENT}\"")
set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
else()
set(CMAKE_INSTALL_COMPONENT)
endif()
endif()
# Is this installation the result of a crosscompile?
if(NOT DEFINED CMAKE_CROSSCOMPILING)
set(CMAKE_CROSSCOMPILING "FALSE")
endif()
# Set path to fallback-tool for dependency-resolution.
if(NOT DEFINED CMAKE_OBJDUMP)
set(CMAKE_OBJDUMP "/usr/bin/objdump")
endif()
if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT)
list(APPEND CMAKE_ABSOLUTE_DESTINATION_FILES
"/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/share/doc/libsoxr/examples/1-single-block.c;/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/share/doc/libsoxr/examples/1a-lsr.c;/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/share/doc/libsoxr/examples/2-stream.C;/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/share/doc/libsoxr/examples/3-options-input-fn.c;/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/share/doc/libsoxr/examples/4-split-channels.c;/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/share/doc/libsoxr/examples/5-variable-rate.c;/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/share/doc/libsoxr/examples/examples-common.h;/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/share/doc/libsoxr/examples/README")
if(CMAKE_WARN_ON_ABSOLUTE_INSTALL_DESTINATION)
message(WARNING "ABSOLUTE path INSTALL DESTINATION : ${CMAKE_ABSOLUTE_DESTINATION_FILES}")
endif()
if(CMAKE_ERROR_ON_ABSOLUTE_INSTALL_DESTINATION)
message(FATAL_ERROR "ABSOLUTE path INSTALL DESTINATION forbidden (by caller): ${CMAKE_ABSOLUTE_DESTINATION_FILES}")
endif()
file(INSTALL DESTINATION "/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/share/doc/libsoxr/examples" TYPE FILE FILES
"/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/examples/1-single-block.c"
"/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/examples/1a-lsr.c"
"/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/examples/2-stream.C"
"/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/examples/3-options-input-fn.c"
"/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/examples/4-split-channels.c"
"/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/examples/5-variable-rate.c"
"/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/examples/examples-common.h"
"/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/examples/README"
)
endif()
string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT
"${CMAKE_INSTALL_MANIFEST_FILES}")
if(CMAKE_INSTALL_LOCAL_ONLY)
file(WRITE "/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release/examples/install_local_manifest.txt"
"${CMAKE_INSTALL_MANIFEST_CONTENT}")
endif()

View File

@@ -0,0 +1,17 @@
/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/share/doc/libsoxr/README
/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/share/doc/libsoxr/LICENCE
/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/share/doc/libsoxr/NEWS
/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/lib/pkgconfig/soxr.pc
/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/lib/pkgconfig/soxr-lsr.pc
/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/lib/libsoxr.a
/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/include/soxr.h
/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/lib/libsoxr-lsr.a
/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/include/soxr-lsr.h
/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/share/doc/libsoxr/examples/1-single-block.c
/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/share/doc/libsoxr/examples/1a-lsr.c
/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/share/doc/libsoxr/examples/2-stream.C
/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/share/doc/libsoxr/examples/3-options-input-fn.c
/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/share/doc/libsoxr/examples/4-split-channels.c
/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/share/doc/libsoxr/examples/5-variable-rate.c
/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/share/doc/libsoxr/examples/examples-common.h
/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/share/doc/libsoxr/examples/README

View File

@@ -0,0 +1,27 @@
/* 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
#define AVCODEC_FOUND 0
#define AVUTIL_FOUND 0
#define WITH_PFFFT 1
#define HAVE_FENV_H 1
#define HAVE_STDBOOL_H 1
#define HAVE_STDINT_H 1
#define HAVE_LRINT 1
#define HAVE_BIGENDIAN 0
#define WITH_CR32 1
#define WITH_CR32S 0
#define WITH_CR64 1
#define WITH_CR64S 0
#define WITH_VR32 1
#define WITH_HI_PREC_CLOCK 1
#define WITH_FLOAT_STD_PREC_CLOCK 0
#define WITH_DEV_TRACE 1
#endif

View File

@@ -0,0 +1,16 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 4.1
# Relative path conversion top directories.
set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3")
set(CMAKE_RELATIVE_PATH_TOP_BINARY "/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release")
# Force unix paths in dependencies.
set(CMAKE_FORCE_UNIX_PATHS 1)
# The C and CXX include file regular expressions for this directory.
set(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$")
set(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$")
set(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN})
set(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN})

View File

@@ -0,0 +1 @@
13

View File

@@ -0,0 +1,23 @@
# Consider dependencies only in project.
set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF)
# The set of languages for which implicit dependencies are needed:
set(CMAKE_DEPENDS_LANGUAGES
)
# The set of dependency files which are needed:
set(CMAKE_DEPENDS_DEPENDENCY_FILES
"/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/src/soxr-lsr.c" "src/CMakeFiles/soxr-lsr.dir/soxr-lsr.c.o" "gcc" "src/CMakeFiles/soxr-lsr.dir/soxr-lsr.c.o.d"
)
# Targets to which this target links which contain Fortran sources.
set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES
)
# Targets to which this target links which contain Fortran sources.
set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES
)
# Fortran module output directory.
set(CMAKE_Fortran_TARGET_MODULE_DIR "")

View File

@@ -0,0 +1,114 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 4.1
# Delete rule output on recipe failure.
.DELETE_ON_ERROR:
#=============================================================================
# Special targets provided by cmake.
# Disable implicit rules so canonical targets will work.
.SUFFIXES:
# Disable VCS-based implicit rules.
% : %,v
# Disable VCS-based implicit rules.
% : RCS/%
# Disable VCS-based implicit rules.
% : RCS/%,v
# Disable VCS-based implicit rules.
% : SCCS/s.%
# Disable VCS-based implicit rules.
% : s.%
.SUFFIXES: .hpux_make_needs_suffix_list
# Command-line flag to silence nested $(MAKE).
$(VERBOSE)MAKESILENT = -s
#Suppress display of executed commands.
$(VERBOSE).SILENT:
# A target that is always out of date.
cmake_force:
.PHONY : cmake_force
#=============================================================================
# Set environment variables for the build.
# The shell in which to execute make rules.
SHELL = /bin/sh
# The CMake executable.
CMAKE_COMMAND = /opt/homebrew/bin/cmake
# The command to remove a file.
RM = /opt/homebrew/bin/cmake -E rm -f
# Escaping for special characters.
EQUALS = =
# The top-level source directory on which CMake was run.
CMAKE_SOURCE_DIR = /Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3
# The top-level build directory on which CMake was run.
CMAKE_BINARY_DIR = /Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release
# Include any dependencies generated for this target.
include src/CMakeFiles/soxr-lsr.dir/depend.make
# Include any dependencies generated by the compiler for this target.
include src/CMakeFiles/soxr-lsr.dir/compiler_depend.make
# Include the progress variables for this target.
include src/CMakeFiles/soxr-lsr.dir/progress.make
# Include the compile flags for this target's objects.
include src/CMakeFiles/soxr-lsr.dir/flags.make
src/CMakeFiles/soxr-lsr.dir/codegen:
.PHONY : src/CMakeFiles/soxr-lsr.dir/codegen
src/CMakeFiles/soxr-lsr.dir/soxr-lsr.c.o: src/CMakeFiles/soxr-lsr.dir/flags.make
src/CMakeFiles/soxr-lsr.dir/soxr-lsr.c.o: /Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/src/soxr-lsr.c
src/CMakeFiles/soxr-lsr.dir/soxr-lsr.c.o: src/CMakeFiles/soxr-lsr.dir/compiler_depend.ts
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building C object src/CMakeFiles/soxr-lsr.dir/soxr-lsr.c.o"
cd /Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release/src && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT src/CMakeFiles/soxr-lsr.dir/soxr-lsr.c.o -MF CMakeFiles/soxr-lsr.dir/soxr-lsr.c.o.d -o CMakeFiles/soxr-lsr.dir/soxr-lsr.c.o -c /Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/src/soxr-lsr.c
src/CMakeFiles/soxr-lsr.dir/soxr-lsr.c.i: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/soxr-lsr.dir/soxr-lsr.c.i"
cd /Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release/src && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/src/soxr-lsr.c > CMakeFiles/soxr-lsr.dir/soxr-lsr.c.i
src/CMakeFiles/soxr-lsr.dir/soxr-lsr.c.s: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/soxr-lsr.dir/soxr-lsr.c.s"
cd /Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release/src && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/src/soxr-lsr.c -o CMakeFiles/soxr-lsr.dir/soxr-lsr.c.s
# Object files for target soxr-lsr
soxr__lsr_OBJECTS = \
"CMakeFiles/soxr-lsr.dir/soxr-lsr.c.o"
# External object files for target soxr-lsr
soxr__lsr_EXTERNAL_OBJECTS =
src/libsoxr-lsr.a: src/CMakeFiles/soxr-lsr.dir/soxr-lsr.c.o
src/libsoxr-lsr.a: src/CMakeFiles/soxr-lsr.dir/build.make
src/libsoxr-lsr.a: src/CMakeFiles/soxr-lsr.dir/link.txt
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --bold --progress-dir=/Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking C static library libsoxr-lsr.a"
cd /Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release/src && $(CMAKE_COMMAND) -P CMakeFiles/soxr-lsr.dir/cmake_clean_target.cmake
cd /Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release/src && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/soxr-lsr.dir/link.txt --verbose=$(VERBOSE)
# Rule to build all files generated by this target.
src/CMakeFiles/soxr-lsr.dir/build: src/libsoxr-lsr.a
.PHONY : src/CMakeFiles/soxr-lsr.dir/build
src/CMakeFiles/soxr-lsr.dir/clean:
cd /Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release/src && $(CMAKE_COMMAND) -P CMakeFiles/soxr-lsr.dir/cmake_clean.cmake
.PHONY : src/CMakeFiles/soxr-lsr.dir/clean
src/CMakeFiles/soxr-lsr.dir/depend:
cd /Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3 /Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/src /Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release /Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release/src /Users/coissac/Sync/maison/Petite_maisons/src/pmomusic/C/src/soxr-0.1.3/Release/src/CMakeFiles/soxr-lsr.dir/DependInfo.cmake "--color=$(COLOR)"
.PHONY : src/CMakeFiles/soxr-lsr.dir/depend

View File

@@ -0,0 +1,11 @@
file(REMOVE_RECURSE
"CMakeFiles/soxr-lsr.dir/soxr-lsr.c.o"
"CMakeFiles/soxr-lsr.dir/soxr-lsr.c.o.d"
"libsoxr-lsr.a"
"libsoxr-lsr.pdb"
)
# Per-language clean rules from dependency scanning.
foreach(lang C)
include(CMakeFiles/soxr-lsr.dir/cmake_clean_${lang}.cmake OPTIONAL)
endforeach()

Some files were not shown because too many files have changed in this diff Show More