Skip to content

Commit

Permalink
Fix macOS build
Browse files Browse the repository at this point in the history
Signed-off-by: falkTX <falktx@falktx.com>
  • Loading branch information
falkTX committed May 23, 2024
1 parent 40d1dd3 commit d031a7d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion carla
2 changes: 1 addition & 1 deletion dpf
Submodule dpf updated 38 files
+15 −14 .github/workflows/cmake.yml
+15 −14 .github/workflows/example-plugins.yml
+1 −1 .github/workflows/makefile.yml
+5 −3 CMakeLists.txt
+5 −3 Makefile
+37 −6 Makefile.plugins.mk
+290 −38 cmake/DPF-plugin.cmake
+1 −1 distrho/DistrhoPluginUtils.hpp
+1 −2 distrho/DistrhoUI.hpp
+13 −0 distrho/DistrhoUIMain.cpp
+27 −0 distrho/DistrhoUI_win32.cpp
+40 −87 distrho/extra/WebViewImpl.cpp
+1 −1 distrho/extra/WebViewImpl.hpp
+101 −0 distrho/extra/WebViewWin32.hpp
+15 −0 distrho/extra/choc/LICENSE.md
+22 −0 distrho/extra/choc/README.md
+2,803 −0 distrho/extra/choc/choc.patch
+154 −0 distrho/extra/choc/choc_DesktopWindow.h
+141 −0 distrho/extra/choc/choc_DynamicLibrary.h
+511 −0 distrho/extra/choc/choc_MemoryDLL.h
+67 −0 distrho/extra/choc/choc_Platform.h
+74 −0 distrho/extra/choc/choc_StringUtilities.h
+4,769 −0 distrho/extra/choc/choc_WebView.h
+6 −2 distrho/src/DistrhoPluginChecks.h
+195 −15 distrho/src/DistrhoUI.cpp
+18 −7 distrho/src/DistrhoUIInternal.hpp
+14 −1 distrho/src/DistrhoUIPrivateData.hpp
+1 −7 distrho/src/DistrhoUtils.cpp
+2 −7 examples/EmbedExternalUI/CMakeLists.txt
+0 −6 examples/EmbedExternalUI/Makefile
+1 −0 examples/FileHandling/CMakeLists.txt
+13 −0 examples/WebMeters/CMakeLists.txt
+43 −0 examples/WebMeters/DistrhoPluginInfo.h
+288 −0 examples/WebMeters/ExamplePluginWebMeters.cpp
+61 −0 examples/WebMeters/ExampleUIWebMeters.cpp
+61 −0 examples/WebMeters/Makefile
+8 −0 examples/WebMeters/README.md
+150 −0 examples/WebMeters/index.html
2 changes: 1 addition & 1 deletion plugins/Common/IldaeilPlugin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@ static const char* getPathForJSFX()
#if defined(CARLA_OS_MAC)
path = getHomePath()
+ "/Library/Application Support/REAPER/Effects";
if (! water::File(path).isDirectory())
if (! water::File(path.toRawUTF8()).isDirectory())
path = "/Applications/REAPER.app/Contents/InstallFiles/Effects";
#elif defined(CARLA_OS_WASM)
path = "/jsfx";
Expand Down

0 comments on commit d031a7d

Please sign in to comment.