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

CMake: Fix error when specifying multi-item VST3_CATEGORIES

This commit is contained in:
reuk 2020-06-29 10:27:38 +01:00 committed by reuk
parent a2d1fc412a
commit eaf2dd5ef8

View file

@ -1595,7 +1595,7 @@ function(_juce_set_generic_property_if_not_set target property)
set(existing_property)
get_target_property(existing_property ${target} ${property})
if(${existing_property} STREQUAL "existing_property-NOTFOUND")
if(existing_property STREQUAL "existing_property-NOTFOUND")
set_target_properties(${target} PROPERTIES ${property} "${ARGN}")
endif()
endfunction()