diff options
author | Emanuel Schmidt <eschmidt216@gmail.com> | 2023-02-17 18:47:35 +0100 |
---|---|---|
committer | Emanuel Schmidt <eschmidt216@gmail.com> | 2023-02-17 18:52:14 +0100 |
commit | e4c878d17942346dce5f54b25d7624440ef47de6 (patch) | |
tree | a14d1b30935bfd61d0932ba1d7751a4196761d39 | |
parent | ee145e53d1c1175a7af873c120eb2958cd38982e (diff) |
Fixed missing dependency in libdemo
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.build | 2 |
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, ) |