Browse Source

MacOS build

tags/1.1.0
xenakios 7 years ago
parent
commit
51d40c6daf
2 changed files with 6 additions and 1 deletions
  1. +5
    -1
      Source/PluginEditor.cpp
  2. +1
    -0
      Source/PluginProcessor.cpp

+ 5
- 1
Source/PluginEditor.cpp View File

@@ -422,7 +422,11 @@ void PaulstretchpluginAudioProcessorEditor::showSettingsMenu()
}
if (r == 8)
{
processor.offlineRender(File("C:\\MusicAudio\\sourcesamples\\paultesmaus\\plugin_offline_test\\out.wav"));
#ifdef JUCE_WINDOWS
processor.offlineRender(File("C:\\MusicAudio\\sourcesamples\\paultesmaus\\plugin_offline_test\\out.wav"));
#else
processor.offlineRender(File("/Users/teemu/AudioProjects/sourcesamples/paultests/pspout.wav"));
#endif
}
if (r == 9)
{


+ 1
- 0
Source/PluginProcessor.cpp View File

@@ -21,6 +21,7 @@ Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#include "PluginProcessor.h"
#include "PluginEditor.h"
#include <set>
#include <thread>

#ifdef WIN32
#undef min


Loading…
Cancel
Save