DISTRHO Plugin Framework
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
347B

  1. # CMake file for DISTRHO Plugins #
  2. # ------------------------------ #
  3. dpf_add_plugin(d_cairoui
  4. TARGETS jack dssi lv2 vst2
  5. UI_TYPE cairo
  6. FILES_DSP
  7. CairoExamplePlugin.cpp
  8. FILES_UI
  9. Artwork.cpp
  10. DemoWidgetBanner.cpp
  11. DemoWidgetClickable.cpp
  12. CairoExampleUI.cpp)
  13. target_include_directories(
  14. d_cairoui PUBLIC ".")