Skip to content

Commit 1590c1c

Browse files
authored
Merge pull request #7 from MeijisIrlnd/syl/source-files
sources for all headers (except warnings ones), removed format reader
2 parents 99f1afb + d74613f commit 1590c1c

20 files changed

+86
-219
lines changed

include/marvin/math/marvin_Windows.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
#define MARVIN_MATHWINDOWS_H
1313
#include <marvin/math/marvin_Math.h>
1414
#include <marvin/library/marvin_Concepts.h>
15+
#include <marvin/library/marvin_Literals.h>
1516
#include <numbers>
1617
#include <cmath>
1718
namespace marvin::math::windows {

include/marvin/utils/marvin_FormatReader.h

Lines changed: 0 additions & 219 deletions
This file was deleted.

source/CMakeLists.txt

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,18 +10,35 @@
1010

1111
set(MARVIN_SOURCES
1212
${CMAKE_CURRENT_SOURCE_DIR}/containers/marvin_BufferView.cpp
13+
${CMAKE_CURRENT_SOURCE_DIR}/containers/marvin_FIFO.cpp
14+
${CMAKE_CURRENT_SOURCE_DIR}/containers/marvin_FixedCircularBuffer.cpp
15+
${CMAKE_CURRENT_SOURCE_DIR}/containers/marvin_StrideView.cpp
16+
${CMAKE_CURRENT_SOURCE_DIR}/containers/marvin_SwapBuffer.cpp
1317
${CMAKE_CURRENT_SOURCE_DIR}/dsp/marvin_DelayLine.cpp
1418
${CMAKE_CURRENT_SOURCE_DIR}/dsp/spectral/marvin_FFT.cpp
1519
${CMAKE_CURRENT_SOURCE_DIR}/dsp/oscillators/marvin_Oscillator.cpp
1620
${CMAKE_CURRENT_SOURCE_DIR}/dsp/filters/marvin_APF.cpp
1721
${CMAKE_CURRENT_SOURCE_DIR}/dsp/filters/marvin_LPF.cpp
1822
${CMAKE_CURRENT_SOURCE_DIR}/dsp/filters/marvin_SVF.cpp
23+
${CMAKE_CURRENT_SOURCE_DIR}/dsp/filters/biquad/marvin_Biquad.cpp
24+
${CMAKE_CURRENT_SOURCE_DIR}/dsp/filters/biquad/marvin_BiquadCoefficients.cpp
25+
${CMAKE_CURRENT_SOURCE_DIR}/dsp/filters/biquad/marvin_RBJCoefficients.cpp
26+
${CMAKE_CURRENT_SOURCE_DIR}/dsp/filters/biquad/marvin_SmoothedBiquadCoefficients.cpp
27+
${CMAKE_CURRENT_SOURCE_DIR}/library/marvin_Concepts.cpp
28+
${CMAKE_CURRENT_SOURCE_DIR}/library/marvin_Literals.cpp
29+
${CMAKE_CURRENT_SOURCE_DIR}/library/marvin_PropagateConst.cpp
30+
${CMAKE_CURRENT_SOURCE_DIR}/math/marvin_Conversions.cpp
31+
${CMAKE_CURRENT_SOURCE_DIR}/math/marvin_Interpolators.cpp
32+
${CMAKE_CURRENT_SOURCE_DIR}/math/marvin_Math.cpp
33+
${CMAKE_CURRENT_SOURCE_DIR}/math/marvin_MixMatrix.cpp
1934
${CMAKE_CURRENT_SOURCE_DIR}/math/marvin_VecOps.cpp
2035
${CMAKE_CURRENT_SOURCE_DIR}/math/marvin_Reciprocal.cpp
2136
${CMAKE_CURRENT_SOURCE_DIR}/math/marvin_LeakyIntegrator.cpp
37+
${CMAKE_CURRENT_SOURCE_DIR}/math/marvin_Windows.cpp
2238
${CMAKE_CURRENT_SOURCE_DIR}/utils/marvin_Utils.cpp
2339
${CMAKE_CURRENT_SOURCE_DIR}/utils/marvin_SmoothedValue.cpp
2440
${CMAKE_CURRENT_SOURCE_DIR}/utils/marvin_Random.cpp
41+
${CMAKE_CURRENT_SOURCE_DIR}/utils/marvin_Range.cpp
2542
PARENT_SCOPE
2643
)
2744

source/containers/marvin_FIFO.cpp

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
//
2+
// Created by Syl Morrison on 03/05/2025.
3+
//
4+
#include <marvin/containers/marvin_FIFO.h>
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
//
2+
// Created by Syl Morrison on 03/05/2025.
3+
//
4+
#include <marvin/containers/marvin_FixedCircularBuffer.h>
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
//
2+
// Created by Syl Morrison on 03/05/2025.
3+
//
4+
#include <marvin/containers/marvin_StrideView.h>
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
//
2+
// Created by Syl Morrison on 03/05/2025.
3+
//
4+
#include <marvin/containers/marvin_SwapBuffer.h>
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
//
2+
// Created by Syl Morrison on 03/05/2025.
3+
//
4+
#include <marvin/dsp/filters/biquad/marvin_Biquad.h>
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
//
2+
// Created by Syl Morrison on 03/05/2025.
3+
//
4+
#include <marvin/dsp/filters/biquad/marvin_BiquadCoefficients.h>
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
//
2+
// Created by Syl Morrison on 03/05/2025.
3+
//
4+
#include <marvin/dsp/filters/biquad/marvin_RBJCoefficients.h>

0 commit comments

Comments
 (0)