From 7106411bc076484c9c159b0d693c85d22136914d Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Fri, 28 Oct 2022 11:45:30 +0900 Subject: [PATCH] [ui] Link with the ECS library Who thought dynamic libs was a good idea... --- libs/ui/Makemodule.am | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/libs/ui/Makemodule.am b/libs/ui/Makemodule.am index e0b54c30b..38d252a35 100644 --- a/libs/ui/Makemodule.am +++ b/libs/ui/Makemodule.am @@ -2,7 +2,9 @@ include libs/ui/test/Makemodule.am lib_LTLIBRARIES += libs/ui/libQFui.la -ui_deps = libs/util/libQFutil.la +ui_deps = \ + libs/ecs/libQFecs.la \ + libs/util/libQFutil.la libs_ui_libQFui_la_LDFLAGS= $(lib_ldflags) libs_ui_libQFui_la_LIBADD= $(ui_deps)