External, Non-PPA KXStudio Repository
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.

34 lines
1.0KB

  1. --- moony.lv2-0.40.0.orig/meson.build
  2. +++ moony.lv2-0.40.0/meson.build
  3. @@ -5,7 +5,6 @@ project('moony.lv2', 'c', default_option
  4. 'b_lto=false',
  5. 'c_std=gnu11'])
  6. -d2tk = subproject('d2tk')
  7. nk_pugl = subproject('nk_pugl')
  8. lv2libdir = get_option('lv2libdir')
  9. @@ -14,14 +13,6 @@ gc_method = get_option('gc-method')
  10. inst_dir = join_paths(lv2libdir, meson.project_name())
  11. -if get_option('use-backend-nanovg').enabled()
  12. - d2tk_dep = d2tk.get_variable('d2tk_nanovg')
  13. -elif get_option('use-backend-cairo').enabled()
  14. - d2tk_dep = d2tk.get_variable('d2tk_cairo')
  15. -else
  16. - error('no valid UI backend given')
  17. -endif
  18. -
  19. nk_pugl_dep = nk_pugl.get_variable('nk_pugl_gl')
  20. cousine_regular_ttf = nk_pugl.get_variable('cousine_regular_ttf')
  21. @@ -45,7 +36,6 @@ thread_dep = dependency('threads')
  22. dsp_deps = [m_dep, lv2_dep, cairo_dep, thread_dep]
  23. nk_ui_deps = [m_dep, lv2_dep, cairo_dep, thread_dep, nk_pugl_dep]
  24. -d2tk_ui_deps = [m_dep, lv2_dep, d2tk_dep]
  25. if cc.has_member('LV2UI_Request_Value', 'request',
  26. prefix : '#include <lv2/lv2plug.in/ns/extensions/ui/ui.h>')