1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-30 02:50:05 +00:00

Added the JUCE DSP module

This commit is contained in:
hogliux 2017-07-27 12:39:07 +01:00
parent 281c2fe2af
commit 244a944857
212 changed files with 37051 additions and 1301 deletions

View file

@ -57,6 +57,7 @@
#define JUCE_MODULE_AVAILABLE_juce_core 1
#define JUCE_MODULE_AVAILABLE_juce_cryptography 1
#define JUCE_MODULE_AVAILABLE_juce_data_structures 1
#define JUCE_MODULE_AVAILABLE_juce_dsp 1
#define JUCE_MODULE_AVAILABLE_juce_events 1
#define JUCE_MODULE_AVAILABLE_juce_graphics 1
#define JUCE_MODULE_AVAILABLE_juce_gui_basics 1
@ -187,6 +188,25 @@
//#define JUCE_ALLOW_STATIC_NULL_VARIABLES 1
#endif
//==============================================================================
// juce_dsp flags:
#ifndef JUCE_ASSERTION_FIRFILTER
//#define JUCE_ASSERTION_FIRFILTER 1
#endif
#ifndef JUCE_DSP_USE_INTEL_MKL
//#define JUCE_DSP_USE_INTEL_MKL 1
#endif
#ifndef JUCE_DSP_USE_SHARED_FFTW
//#define JUCE_DSP_USE_SHARED_FFTW 1
#endif
#ifndef JUCE_DSP_USE_STATIC_FFTW
//#define JUCE_DSP_USE_STATIC_FFTW 1
#endif
//==============================================================================
// juce_events flags:

View file

@ -23,6 +23,7 @@
#include <juce_core/juce_core.h>
#include <juce_cryptography/juce_cryptography.h>
#include <juce_data_structures/juce_data_structures.h>
#include <juce_dsp/juce_dsp.h>
#include <juce_events/juce_events.h>
#include <juce_graphics/juce_graphics.h>
#include <juce_gui_basics/juce_gui_basics.h>

View file

@ -0,0 +1,9 @@
/*
IMPORTANT! This file is auto-generated each time you save your
project - if you alter its contents, your changes may be overwritten!
*/
#include "AppConfig.h"
#include <juce_dsp/juce_dsp.cpp>

View file

@ -0,0 +1,9 @@
/*
IMPORTANT! This file is auto-generated each time you save your
project - if you alter its contents, your changes may be overwritten!
*/
#include "AppConfig.h"
#include <juce_dsp/juce_dsp.mm>