diff options
author | David Robillard <d@drobilla.net> | 2019-11-09 18:23:55 +0100 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2019-11-09 18:23:55 +0100 |
commit | cbab55296e607350e2dfb1ca39582ac7ef946fc3 (patch) | |
tree | 847b4cb82aa03b7ec349786297f115c098c20d7a | |
parent | 6f00c1ae0e0c3616df1fcb093cfa64f0032782fc (diff) | |
download | suil-cbab55296e607350e2dfb1ca39582ac7ef946fc3.tar.gz suil-cbab55296e607350e2dfb1ca39582ac7ef946fc3.tar.bz2 suil-cbab55296e607350e2dfb1ca39582ac7ef946fc3.zip |
Fix pkg-config dependencies
-rw-r--r-- | suil.pc.in | 1 | ||||
-rw-r--r-- | wscript | 3 |
2 files changed, 3 insertions, 1 deletions
@@ -6,5 +6,6 @@ includedir=@INCLUDEDIR@ Name: Suil Version: @SUIL_VERSION@ Description: LV2 plugin UI hosting library +Requires: @SUIL_PKG_DEPS@ Libs: -L${libdir} -l@LIB_SUIL@ Cflags: -I${includedir}/suil-@SUIL_MAJOR_VERSION@ @@ -214,7 +214,8 @@ def build(bld): # Pkgconfig file autowaf.build_pc(bld, 'SUIL', SUIL_VERSION, SUIL_MAJOR_VERSION, [], - {'SUIL_MAJOR_VERSION' : SUIL_MAJOR_VERSION}) + {'SUIL_MAJOR_VERSION' : SUIL_MAJOR_VERSION, + 'SUIL_PKG_DEPS' : 'lv2'}) cflags = [] lib = [] |