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

LV2 Manifest Helper: Rename main source file

This commit is contained in:
reuk 2023-05-25 17:17:39 +01:00
parent 53a87c178c
commit e56e470f5b
No known key found for this signature in database
GPG key ID: FCB43929F012EE5C
4 changed files with 4 additions and 3 deletions

View file

@ -444,7 +444,8 @@ function(juce_add_module module_path)
_juce_module_sources("${module_path}" "${base_path}" globbed_sources headers)
if(${module_name} STREQUAL "juce_audio_plugin_client")
list(REMOVE_ITEM headers "${module_path}/LV2/juce_LV2TurtleDumpProgram.cpp")
list(REMOVE_ITEM headers
"${module_path}/LV2/juce_LV2ManifestHelper.cpp")
_juce_get_platform_plugin_kinds(plugin_kinds)

View file

@ -925,7 +925,7 @@ function(_juce_add_lv2_manifest_helper_target)
endif()
get_target_property(module_path juce::juce_audio_plugin_client INTERFACE_JUCE_MODULE_PATH)
set(source "${module_path}/juce_audio_plugin_client/LV2/juce_LV2TurtleDumpProgram.cpp")
set(source "${module_path}/juce_audio_plugin_client/LV2/juce_LV2ManifestHelper.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_17)

View file

@ -220,7 +220,7 @@ public:
{
return getModuleFolderRelativeToProject ("juce_audio_plugin_client")
.getChildFile ("LV2")
.getChildFile ("juce_LV2TurtleDumpProgram.cpp");
.getChildFile ("juce_LV2ManifestHelper.cpp");
}
std::vector<build_tools::RelativePath> getVST3HelperProgramSources (const ProjectExporter& exporter) const