diff options
author | Adam Jackson <ajax@redhat.com> | 2018-03-26 18:42:58 -0400 |
---|---|---|
committer | Adam Jackson <ajax@redhat.com> | 2018-03-27 10:28:33 -0400 |
commit | f9ef293cf612e50830ff316d67066ea544905dc9 (patch) | |
tree | 6d0284540dc5690b3aa24850b7d35a0f99882303 /hw | |
parent | a1e8dc05163956de9ab73e567f86b91cb8790c0f (diff) |
meson: Build cvt and gtf
Signed-off-by: Adam Jackson <ajax@redhat.com>
Reviewed-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'hw')
-rw-r--r-- | hw/xfree86/meson.build | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/hw/xfree86/meson.build b/hw/xfree86/meson.build index 4c03aab84..133c96d89 100644 --- a/hw/xfree86/meson.build +++ b/hw/xfree86/meson.build @@ -153,6 +153,23 @@ if get_option('suid_wrapper') ) endif +executable('cvt', + ['utils/cvt/cvt.c', 'modes/xf86cvt.c'], + include_directories: [inc, xorg_inc], + dependencies: xorg_deps, + link_with: libxserver_os, + c_args: xorg_c_args, + install: true, +) + +executable('gtf', + 'utils/gtf/gtf.c', + include_directories: [inc, xorg_inc], + dependencies: xorg_deps, + c_args: xorg_c_args, + install: true, +) + # For symbol presence testing only xorgserver_lib = shared_library( 'xorgserver', |