summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcel Hollerbach <mail@marcel-hollerbach.de>2018-12-07 15:01:21 +0100
committerMarcel Hollerbach <mail@marcel-hollerbach.de>2018-12-07 15:01:21 +0100
commit9c1d2fe62f96771b0505613108459390f33e5074 (patch)
tree48fd2101d61f25c39561e9aaf9692351dace380b
parent5e440beb7119eea5d20d4ba1630c3304e8d8b436 (diff)
downloadefl-9c1d2fe62f96771b0505613108459390f33e5074.tar.gz
build: draw is using functions from rg_etc
this means when you use draw you should automatically drag in rg_etc. This fixes a build problem reported on irc.
-rw-r--r--src/static_libs/draw/meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/static_libs/draw/meson.build b/src/static_libs/draw/meson.build
index c1b72c581d..32fe35e989 100644
--- a/src/static_libs/draw/meson.build
+++ b/src/static_libs/draw/meson.build
@@ -23,7 +23,7 @@ endif
draw = declare_dependency(
include_directories: [include_directories('.'), include_directories(join_paths('..', '..', 'lib'))],
- dependencies: [eina, efl],
+ dependencies: [eina, efl, rg_etc],
sources : draw_src,
link_with : draw_opt_lib
)