mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 23:32:09 +00:00
[gui] Link against freetype and harfbuzz
Ran into the issue while testing the screen update change ("release" build couldn't run due to broken plugins).
This commit is contained in:
parent
07d5749a4e
commit
93e5c84a20
1 changed files with 5 additions and 1 deletions
|
@ -7,12 +7,16 @@ lib_LTLIBRARIES += \
|
|||
gui_deps = \
|
||||
libs/ui/libQFui.la
|
||||
|
||||
gui_libadd = \
|
||||
$(FREETYPE_LIBS) \
|
||||
$(HARFBUZZ_LIBS)
|
||||
|
||||
ui_deps = \
|
||||
libs/ecs/libQFecs.la \
|
||||
libs/util/libQFutil.la
|
||||
|
||||
libs_ui_libQFgui_la_LDFLAGS= $(lib_ldflags)
|
||||
libs_ui_libQFgui_la_LIBADD= $(gui_deps) $(ui_deps)
|
||||
libs_ui_libQFgui_la_LIBADD= $(gui_deps) $(ui_deps) $(gui_libadd)
|
||||
libs_ui_libQFgui_la_DEPENDENCIES= $(gui_deps) $(ui_deps)
|
||||
libs_ui_libQFgui_la_SOURCES= \
|
||||
libs/ui/canvas.c \
|
||||
|
|
Loading…
Reference in a new issue