1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-24 01:54:22 +00:00
This commit is contained in:
jules 2008-01-03 22:08:27 +00:00
parent 746731a923
commit 4975baf84e
3 changed files with 100 additions and 5 deletions

View file

@ -167,11 +167,15 @@ SOURCE=..\..\..\src\juce_appframework\application\juce_SystemClipboard.h
# PROP Default_Filter ""
# Begin Source File
SOURCE=..\..\..\src\juce_appframework\audio\audio_file_formats\flac\libFLAC\bitbuffer.c
SOURCE=..\..\..\src\juce_appframework\audio\audio_file_formats\flac\libFLAC\bitmath.c
# End Source File
# Begin Source File
SOURCE=..\..\..\src\juce_appframework\audio\audio_file_formats\flac\libFLAC\bitmath.c
SOURCE=..\..\..\src\juce_appframework\audio\audio_file_formats\flac\libFLAC\bitreader.c
# End Source File
# Begin Source File
SOURCE=..\..\..\src\juce_appframework\audio\audio_file_formats\flac\libFLAC\bitwriter.c
# End Source File
# Begin Source File
@ -655,6 +659,94 @@ SOURCE=..\..\..\src\juce_appframework\audio\processors\juce_GenericAudioProcesso
SOURCE=..\..\..\src\juce_appframework\audio\processors\juce_GenericAudioProcessorEditor.h
# End Source File
# End Group
# Begin Group "plugins"
# PROP Default_Filter ""
# Begin Group "formats"
# PROP Default_Filter ""
# Begin Source File
SOURCE=..\..\..\src\juce_appframework\audio\plugins\formats\juce_AudioUnitPluginFormat.cpp
# End Source File
# Begin Source File
SOURCE=..\..\..\src\juce_appframework\audio\plugins\formats\juce_AudioUnitPluginFormat.h
# End Source File
# Begin Source File
SOURCE=..\..\..\src\juce_appframework\audio\plugins\formats\juce_DirectXPluginFormat.h
# End Source File
# Begin Source File
SOURCE=..\..\..\src\juce_appframework\audio\plugins\formats\juce_LADSPAPluginFormat.h
# End Source File
# Begin Source File
SOURCE=..\..\..\src\juce_appframework\audio\plugins\formats\juce_VSTPluginFormat.cpp
# End Source File
# Begin Source File
SOURCE=..\..\..\src\juce_appframework\audio\plugins\formats\juce_VSTPluginFormat.h
# End Source File
# End Group
# Begin Source File
SOURCE=..\..\..\src\juce_appframework\audio\plugins\juce_AudioPluginFormat.cpp
# End Source File
# Begin Source File
SOURCE=..\..\..\src\juce_appframework\audio\plugins\juce_AudioPluginFormat.h
# End Source File
# Begin Source File
SOURCE=..\..\..\src\juce_appframework\audio\plugins\juce_AudioPluginFormatManager.cpp
# End Source File
# Begin Source File
SOURCE=..\..\..\src\juce_appframework\audio\plugins\juce_AudioPluginFormatManager.h
# End Source File
# Begin Source File
SOURCE=..\..\..\src\juce_appframework\audio\plugins\juce_AudioPluginInstance.cpp
# End Source File
# Begin Source File
SOURCE=..\..\..\src\juce_appframework\audio\plugins\juce_AudioPluginInstance.h
# End Source File
# Begin Source File
SOURCE=..\..\..\src\juce_appframework\audio\plugins\juce_KnownPluginList.cpp
# End Source File
# Begin Source File
SOURCE=..\..\..\src\juce_appframework\audio\plugins\juce_KnownPluginList.h
# End Source File
# Begin Source File
SOURCE=..\..\..\src\juce_appframework\audio\plugins\juce_PluginDescription.cpp
# End Source File
# Begin Source File
SOURCE=..\..\..\src\juce_appframework\audio\plugins\juce_PluginDescription.h
# End Source File
# Begin Source File
SOURCE=..\..\..\src\juce_appframework\audio\plugins\juce_PluginDirectoryScanner.cpp
# End Source File
# Begin Source File
SOURCE=..\..\..\src\juce_appframework\audio\plugins\juce_PluginDirectoryScanner.h
# End Source File
# Begin Source File
SOURCE=..\..\..\src\juce_appframework\audio\plugins\juce_PluginListComponent.cpp
# End Source File
# Begin Source File
SOURCE=..\..\..\src\juce_appframework\audio\plugins\juce_PluginListComponent.h
# End Source File
# End Group
# End Group
# Begin Group "events"

View file

@ -1,4 +1,4 @@
/*
/*
==============================================================================
This file is part of the JUCE library - "Jules' Utility Class Extensions"

View file

@ -78,8 +78,11 @@ BEGIN_JUCE_NAMESPACE
#pragma warning (disable: 4996)
#endif
/* Obviously you're going to need the Steinberg vstsdk2.4 folder in
your include path if you want to add VST support...
/* Obviously you're going to need the Steinberg vstsdk2.4 folder in
your include path if you want to add VST support.
If you're not interested in VSTs, you can disable them by changing the
JUCE_PLUGINHOST_VST flag in juce_Config.h
*/
#include "pluginterfaces/vst2.x/aeffectx.h"