Skip to content

Commit

Permalink
Require GPL in jackrack module CMake build file to install lv2 and vs…
Browse files Browse the repository at this point in the history
…t2 yaml metadata files
  • Loading branch information
mr.fantastic committed Aug 11, 2024
1 parent 53a62dd commit e9128da
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/modules/jackrack/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@ if(TARGET JACK::JACK)
install(FILES consumer_jack.yml DESTINATION ${MLT_INSTALL_DATA_DIR}/jackrack)
endif()

if(USE_LV2)
if(USE_LV2 AND GPL)
target_compile_definitions(mltjackrack PRIVATE WITH_LV2)
install(FILES filter_lv2.yml producer_lv2.yml DESTINATION ${MLT_INSTALL_DATA_DIR}/jackrack)
endif()

if(USE_VST2)
if(USE_VST2 AND GPL)
target_compile_definitions(mltjackrack PRIVATE WITH_VST2)
install(FILES filter_vst2.yml producer_vst2.yml DESTINATION ${MLT_INSTALL_DATA_DIR}/jackrack)
endif()
Expand Down

0 comments on commit e9128da

Please sign in to comment.