1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

CMake: Fix VST3 naming on Linux

The module binary now has the extension `.so` instead of `.vst3`.
This commit is contained in:
reuk 2020-04-29 15:19:12 +01:00
parent eeff1e6174
commit 5355448507

View file

@ -1217,6 +1217,7 @@ function(_juce_set_plugin_target_properties shared_code_target kind)
set(arch_string $<IF:${is_platform_x64},x86_64,i386>)
set_target_properties(${target_name} PROPERTIES
SUFFIX .so
LIBRARY_OUTPUT_DIRECTORY "${output_path}/Contents/${arch_string}-linux")
endif()