summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEmanuel Schmidt <eschmidt216@gmail.com>2023-02-17 18:47:35 +0100
committerEmanuel Schmidt <eschmidt216@gmail.com>2023-02-17 18:52:14 +0100
commite4c878d17942346dce5f54b25d7624440ef47de6 (patch)
treea14d1b30935bfd61d0932ba1d7751a4196761d39
parentee145e53d1c1175a7af873c120eb2958cd38982e (diff)
downloadpixman-master.tar.gz
Fixed missing dependency in libdemoHEADmaster
After the latest changes and separation of demo- and test-targets, it was visible that a dependency towards `libtestutils_dep` was missing in one of the demo-dependencies. This change will fix this particular problem.
-rw-r--r--demos/meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/demos/meson.build b/demos/meson.build
index c844e92..cff3cf2 100644
--- a/demos/meson.build
+++ b/demos/meson.build
@@ -47,7 +47,7 @@ if dep_gtk.found()
libdemo = static_library(
'demo',
['gtk-utils.c', config_h, version_h],
- dependencies : [dep_gtk, dep_glib, dep_png, dep_m, dep_openmp],
+ dependencies : [libtestutils_dep, dep_gtk, dep_glib, dep_png, dep_m, dep_openmp],
include_directories : inc_pixman,
)