From fcc64e70e26bd39a569c575feb7b4dc87cbb06fb Mon Sep 17 00:00:00 2001 From: dreamer Date: Fri, 26 Jul 2024 15:51:02 +0200 Subject: [PATCH] add LV2 format and uri to cmake builds --- CMakeLists.txt | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 55481d0..f3179b3 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -31,7 +31,7 @@ set(BUNDLE_ID "com.WingsDSP.Fire") # Change me! Set the plugin formats you want built # Valid choices: AAX Unity VST VST3 AU AUv3 Standalone -set(FORMATS Standalone AU VST3 AUv3) +set(FORMATS Standalone AU VST3 AUv3 LV2) # For simplicity, the name of the CMake project is also the name of the target project(${PROJECT_NAME} VERSION ${CURRENT_VERSION}) @@ -74,6 +74,8 @@ juce_add_plugin("${PROJECT_NAME}" PLUGIN_CODE Fire FORMATS "${FORMATS}" + LV2URI "https://jerryuhoo.github.io/Fire" + # The name of your final executable # This is how it's listed in the DAW # This can be different from PROJECT_NAME and can have spaces!