File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed
ear-production-suite-plugins/plugins/binaural_monitoring Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -79,7 +79,7 @@ add_custom_command(TARGET ear_binaural_monitoring_VST3 POST_BUILD
7979)
8080
8181if (APPLE )
82- install (FILES ${TENSORFILE_FULLPATH} DESTINATION "${EPS_PLUGIN_INSTALL_PREFIX} VST3/ear-production-suite/EAR Binaural Monitoring.vst3/Contents/MacOS " )
82+ install (FILES ${TENSORFILE_FULLPATH} DESTINATION "${EPS_PLUGIN_INSTALL_PREFIX} VST3/ear-production-suite/EAR Binaural Monitoring.vst3/Contents/Resources " )
8383else ()
8484 install (FILES ${TENSORFILE_FULLPATH} DESTINATION "${EPS_PLUGIN_INSTALL_PREFIX} VST3/ear-production-suite" )
8585endif ()
Original file line number Diff line number Diff line change @@ -77,6 +77,10 @@ EarBinauralMonitoringAudioProcessor::EarBinauralMonitoringAudioProcessor()
7777 auto vstPath = juce::File::getSpecialLocation (
7878 juce::File::SpecialLocationType::currentExecutableFile);
7979 vstPath = vstPath.getParentDirectory ();
80+ #ifdef (__APPLE__)
81+ vstPath = vstPath.getParentDirectory ();
82+ vstPath = vstPath.getChildFile (" Resources" );
83+ #endif
8084 vstPath = vstPath.getChildFile (BEAR_DATA_FILE);
8185 bearDataFilePath = vstPath.getFullPathName ().toStdString ();
8286
You can’t perform that action at this time.
0 commit comments