lv2 / suil

Library for loading and wrapping LV2 plugin UIs
ISC License
11 stars 5 forks source link

Building with LV2 SDK in non-standard path fails. pkg-config is not honored #2

Closed x42 closed 7 years ago

x42 commented 7 years ago

Subject says it all. easy fix:

--- a/wscript
+++ b/wscript
@@ -361,7 +361,7 @@ def build(bld):
                   install_path = module_dir,
                   cflags       = cflags,
                   lib          = modlib)
-        autowaf.use_lib(bld, obj, 'X11')
+        autowaf.use_lib(bld, obj, 'X11 LV2')

     # Documentation
     autowaf.build_dox(bld, 'SUIL', SUIL_VERSION, top, out)
drobilla commented 7 years ago

https://github.com/drobilla/suil/commit/99fc6d47bd3605e99b733954733bddc7baeb6d22

Thanks