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

Added a simple spectrogram example app.

This commit is contained in:
jules 2015-02-05 09:39:30 +00:00
parent 7b0a6157fd
commit 9b70c3ee9b
24 changed files with 7026 additions and 0 deletions

View file

@ -0,0 +1,19 @@
Microsoft Visual Studio Solution File, Format Version 11.00
# Visual Studio 2013
Project("{E2F0E2D2-88FF-EF53-E779-C571B75BEB02}") = "SimpleFFTExample", "SimpleFFTExample.vcxproj", "{D3EA4D64-39DA-D13A-AC10-C306C86BA9F5}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Win32 = Debug|Win32
Release|Win32 = Release|Win32
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{D3EA4D64-39DA-D13A-AC10-C306C86BA9F5}.Debug|Win32.ActiveCfg = Debug|Win32
{D3EA4D64-39DA-D13A-AC10-C306C86BA9F5}.Debug|Win32.Build.0 = Debug|Win32
{D3EA4D64-39DA-D13A-AC10-C306C86BA9F5}.Release|Win32.ActiveCfg = Release|Win32
{D3EA4D64-39DA-D13A-AC10-C306C86BA9F5}.Release|Win32.Build.0 = Release|Win32
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
EndGlobal

File diff suppressed because it is too large Load diff

View file

@ -0,0 +1,29 @@
#ifdef JUCE_USER_DEFINED_RC_FILE
#include JUCE_USER_DEFINED_RC_FILE
#else
#undef WIN32_LEAN_AND_MEAN
#define WIN32_LEAN_AND_MEAN
#include <windows.h>
VS_VERSION_INFO VERSIONINFO
FILEVERSION 1,0,0,0
BEGIN
BLOCK "StringFileInfo"
BEGIN
BLOCK "040904E4"
BEGIN
VALUE "FileDescription", "SimpleFFTExample\0"
VALUE "FileVersion", "1.0.0\0"
VALUE "ProductName", "SimpleFFTExample\0"
VALUE "ProductVersion", "1.0.0\0"
END
END
BLOCK "VarFileInfo"
BEGIN
VALUE "Translation", 0x409, 65001
END
END
#endif