├── .gitignore ├── LICENSE.md ├── PluginRunner.exe ├── PluginRunner.jucer ├── PluginRunnerLinux ├── PluginRunnerMac ├── README.md └── Source └── Main.cpp /.gitignore: -------------------------------------------------------------------------------- 1 | # JUCE generated content 2 | Builds/ 3 | JuceLibraryCode/ 4 | 5 | # Wav files 6 | *.wav 7 | 8 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/PluginRunner/HEAD/LICENSE.md -------------------------------------------------------------------------------- /PluginRunner.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/PluginRunner/HEAD/PluginRunner.exe -------------------------------------------------------------------------------- /PluginRunner.jucer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/PluginRunner/HEAD/PluginRunner.jucer -------------------------------------------------------------------------------- /PluginRunnerLinux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/PluginRunner/HEAD/PluginRunnerLinux -------------------------------------------------------------------------------- /PluginRunnerMac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/PluginRunner/HEAD/PluginRunnerMac -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/PluginRunner/HEAD/README.md -------------------------------------------------------------------------------- /Source/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/PluginRunner/HEAD/Source/Main.cpp --------------------------------------------------------------------------------