mirror of
https://codeberg.org/armin/mindball.git
synced 2026-09-01 03:40:49 +02:00
fix some possible compilation errors on macOS arm64
This commit is contained in:
parent
29026f46fe
commit
482d5c3cbd
1 changed files with 5 additions and 0 deletions
|
|
@ -77,6 +77,11 @@ target_link_libraries(Mindball PRIVATE
|
||||||
# migration warning is irrelevant.
|
# migration warning is irrelevant.
|
||||||
target_compile_definitions(Mindball PRIVATE JUCE_IGNORE_VST3_MISMATCHED_PARAMETER_ID_WARNING)
|
target_compile_definitions(Mindball PRIVATE JUCE_IGNORE_VST3_MISMATCHED_PARAMETER_ID_WARNING)
|
||||||
|
|
||||||
|
# JUCE 8 defaults JUCE_VST3_CAN_REPLACE_VST2 to 1, which compiles VST2-style
|
||||||
|
# class IDs into the plugin while the generated moduleinfo.json uses the modern
|
||||||
|
# IDs, so hosts cannot match the class and fail to load the plugin.
|
||||||
|
target_compile_definitions(Mindball PRIVATE JUCE_VST3_CAN_REPLACE_VST2=0)
|
||||||
|
|
||||||
# juce_core enables libcurl by default on Linux; without NEEDS_CURL the JUCE
|
# juce_core enables libcurl by default on Linux; without NEEDS_CURL the JUCE
|
||||||
# helper targets don't link -lcurl, so that would fail at link time with
|
# helper targets don't link -lcurl, so that would fail at link time with
|
||||||
# undefined references to curl_easy_setopt. We use no network features, so
|
# undefined references to curl_easy_setopt. We use no network features, so
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue