diff options
author | Matthias Clasen <mclasen@redhat.com> | 2019-07-09 21:49:50 -0400 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2019-07-09 22:15:37 -0400 |
commit | 06a59a6d8fe8286b06c85c1434f64c0a7160cbdc (patch) | |
tree | ff06ab6b9747dd2d24ff0b8de9773bb649098a05 | |
parent | f86b5181bb5f3c4db52bdef70bc34a02834c4a08 (diff) | |
download | pango-06a59a6d8fe8286b06c85c1434f64c0a7160cbdc.tar.gz |
tests: Link against libpangocairo
Some tests were not having the right dependencies.
-rw-r--r-- | tests/meson.build | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/meson.build b/tests/meson.build index 0cc01642..b2d2d3e1 100644 --- a/tests/meson.build +++ b/tests/meson.build @@ -21,8 +21,8 @@ tests = [ [ 'testboundaries_ucd' ], [ 'testcolor' ], [ 'testscript' ], - [ 'cxx-test', [ 'cxx-test.cpp' ] ], - [ 'test-break', [ 'test-break.c', 'test-common.c' ] ], + [ 'cxx-test', [ 'cxx-test.cpp' ], [ libpangocairo_dep ] ], + [ 'test-break', [ 'test-break.c', 'test-common.c' ], [libpangocairo_dep ] ], ] if build_pangoft2 |