Skip to content

Commit

Permalink
Update submodules
Browse files Browse the repository at this point in the history
  • Loading branch information
jatinchowdhury18 committed Jan 2, 2024
1 parent 6042929 commit bfe6139
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion modules/chowdsp_utils
Submodule chowdsp_utils updated 40 files
+0 −31 .github/labeler.yml
+0 −12 .github/workflows/labeler.yml
+65 −2 bench/FIRFilterBench.cpp
+2 −0 examples/ForwardingTestPlugin/CMakeLists.txt
+5 −1 examples/ForwardingTestPlugin/ForwardingTestPlugin.cpp
+3 −0 examples/ForwardingTestPlugin/ForwardingTestPlugin.h
+113 −0 examples/ForwardingTestPlugin/InternalPlugins/PolyphaseOversamplingPlugin.cpp
+42 −0 examples/ForwardingTestPlugin/InternalPlugins/PolyphaseOversamplingPlugin.h
+16 −4 modules/common/chowdsp_data_structures/Allocators/chowdsp_ArenaAllocator.h
+147 −0 modules/common/chowdsp_data_structures/Allocators/chowdsp_ChainedArenaAllocator.h
+177 −0 modules/common/chowdsp_data_structures/Structures/chowdsp_SmallMap.h
+4 −1 modules/common/chowdsp_data_structures/chowdsp_data_structures.h
+17 −1 modules/common/chowdsp_serialization/Serialization/chowdsp_BaseSerializer.h
+113 −98 modules/dsp/chowdsp_buffers/Buffers/chowdsp_BufferIterators.h
+6 −2 modules/dsp/chowdsp_compressor/Compressor/chowdsp_CompressorLevelDetector.h
+2 −0 modules/dsp/chowdsp_dsp_data_structures/Other/chowdsp_SmoothedBufferValue.cpp
+21 −4 modules/dsp/chowdsp_filters/Other/chowdsp_FIRFilter.h
+118 −0 modules/dsp/chowdsp_filters/Other/chowdsp_FIRPolyphaseDecimator.h
+100 −0 modules/dsp/chowdsp_filters/Other/chowdsp_FIRPolyphaseInterpolator.h
+1 −1 modules/dsp/chowdsp_filters/Utils/chowdsp_CoefficientCalculators.h
+2 −0 modules/dsp/chowdsp_filters/chowdsp_filters.h
+3 −2 modules/dsp/chowdsp_math/Math/chowdsp_BufferMath.cpp
+138 −0 modules/dsp/chowdsp_math/Math/chowdsp_RandomFloat.h
+1 −0 modules/dsp/chowdsp_math/chowdsp_math.h
+5 −4 modules/plugin/chowdsp_plugin_utils/Threads/chowdsp_DeferredMainThreadAction.h
+1 −1 tests/common_tests/chowdsp_data_structures_test/ArenaAllocatorTest.cpp
+2 −0 tests/common_tests/chowdsp_data_structures_test/CMakeLists.txt
+66 −0 tests/common_tests/chowdsp_data_structures_test/ChainedArenaAllocatorTest.cpp
+93 −0 tests/common_tests/chowdsp_data_structures_test/SmallMapTest.cpp
+71 −0 tests/dsp_tests/chowdsp_buffers_test/BufferIteratorsTest.cpp
+1 −1 tests/dsp_tests/chowdsp_dsp_juce_test/FIRFilterTest.cpp
+1 −1 tests/dsp_tests/chowdsp_filters_test/ButterworthFilterTest.cpp
+2 −0 tests/dsp_tests/chowdsp_filters_test/CMakeLists.txt
+1 −1 tests/dsp_tests/chowdsp_filters_test/ChebyshevIIFilterTest.cpp
+1 −1 tests/dsp_tests/chowdsp_filters_test/EllipticFilterTest.cpp
+57 −0 tests/dsp_tests/chowdsp_filters_test/FIRPolyphaseDecimatorTest.cpp
+59 −0 tests/dsp_tests/chowdsp_filters_test/FIRPolyphaseInterpolatorTest.cpp
+1 −0 tests/dsp_tests/chowdsp_math_test/CMakeLists.txt
+100 −0 tests/dsp_tests/chowdsp_math_test/RandomFloatTest.cpp
+12 −1 tests/plugin_tests/chowdsp_plugin_state_test/StateSerializationTest.cpp
2 changes: 1 addition & 1 deletion src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ if (MSVC)
target_compile_options(BYOD PRIVATE /bigobj)
endif ()

file(GLOB_RECURSE juce_module_sources CONFIGURE_DEPENDS
file(GLOB_RECURSE juce_module_sources
${CMAKE_CURRENT_SOURCE_DIR}/../modules/JUCE/modules/juce_*/*.cpp
${CMAKE_CURRENT_SOURCE_DIR}/../modules/JUCE/modules/juce_*/*.mm
${CMAKE_CURRENT_SOURCE_DIR}/../modules/JUCE/modules/chowdsp_utils/modules/*/chowdsp_*/*.cpp)
Expand Down

0 comments on commit bfe6139

Please sign in to comment.