diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2019-02-03 13:08:57 +0100 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2019-02-03 13:08:57 +0100 |
commit | 930713cf44bcae9a91f92a1582f329643d38abfd (patch) | |
tree | a02b43454a26174c905ef1e2035685eb7b6428e1 /meson.build | |
parent | 4ff884bd2510326dafb5adb97e69797d006b0e14 (diff) | |
download | fbida-930713cf44bcae9a91f92a1582f329643d38abfd.tar.gz |
add gfxfmt, fixes
Diffstat (limited to 'meson.build')
-rw-r--r-- | meson.build | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/meson.build b/meson.build index e438440..5746eb9 100644 --- a/meson.build +++ b/meson.build @@ -82,7 +82,7 @@ add_global_arguments(['-include', 'config.h'], language : 'c') # build fbi fbi_srcs = [ 'fbi.c', 'fb-gui.c', 'desktop.c', 'parseconfig.c', 'fbiconfig.c', - 'vt.c', 'kbd.c', 'fbtools.c', 'drmtools.c', + 'vt.c', 'kbd.c', 'fbtools.c', 'drmtools.c', 'gfx.c', 'filter.c', 'op.c', 'jpegtools.c', trans_src, read_srcs ] fbi_deps = [ drm_dep, pixman_dep, cairo_dep, @@ -116,7 +116,7 @@ executable('thumbnail.cgi', # build fbpdf fbpdf_srcs = [ 'fbpdf.c', 'parseconfig.c', 'fbiconfig.c', - 'vt.c', 'kbd.c', 'fbtools.c', 'drmtools.c' ] + 'vt.c', 'kbd.c', 'fbtools.c', 'drmtools.c', 'gfx.c' ] fbpdf_deps = [ drm_dep, gbm_dep, epoxy_dep, pixman_dep, poppler_dep, cairo_dep, udev_dep, input_dep ] @@ -127,7 +127,7 @@ executable('fbpdf', install : true) # build fbcon -fbcon_srcs = [ 'fbcon.c', 'drmtools.c', 'fbtools.c', 'vt.c', 'kbd.c', 'tmt.c' ] +fbcon_srcs = [ 'fbcon.c', 'drmtools.c', 'fbtools.c', 'gfx.c', 'vt.c', 'kbd.c', 'tmt.c' ] fbcon_deps = [ drm_dep, cairo_dep, util_dep, udev_dep, input_dep, xkb_dep ] executable('fbcon', |