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

LV2 Client: Use unicode consistently for filepaths on Windows

This commit is contained in:
reuk 2023-01-03 16:38:06 +00:00
parent 1fcaf709ca
commit ba604f4ced
No known key found for this signature in database
GPG key ID: 9ADCD339CFC98A11
3 changed files with 97 additions and 8 deletions

View file

@ -843,7 +843,7 @@ function(_juce_add_lv2_manifest_helper_target)
set(source "${module_path}/juce_audio_plugin_client/LV2/juce_LV2TurtleDumpProgram.cpp")
add_executable(juce_lv2_helper "${source}")
add_executable(juce::juce_lv2_helper ALIAS juce_lv2_helper)
target_compile_features(juce_lv2_helper PRIVATE cxx_std_14)
target_compile_features(juce_lv2_helper PRIVATE cxx_std_17)
set_target_properties(juce_lv2_helper PROPERTIES BUILD_WITH_INSTALL_RPATH ON)
target_link_libraries(juce_lv2_helper PRIVATE ${CMAKE_DL_LIBS})
endfunction()