diff options
| author | Timidger <APragmaticPlace@gmail.com> | 2018-04-29 17:32:07 -0400 | 
|---|---|---|
| committer | Timidger <APragmaticPlace@gmail.com> | 2018-05-10 19:03:57 -0700 | 
| commit | 167ca57b18f4777d716b3f37dd1b378695e11290 (patch) | |
| tree | a249e3c69ec88343d02c543069da3e2401c6d9e7 /examples | |
| parent | 583654405fc48c334de523197c583e53199fb929 (diff) | |
| download | wlroots-167ca57b18f4777d716b3f37dd1b378695e11290.tar.xz | |
Fixed up building examples
Diffstat (limited to 'examples')
| -rw-r--r-- | examples/meson.build | 17 | 
1 files changed, 3 insertions, 14 deletions
| diff --git a/examples/meson.build b/examples/meson.build index 896f2bd0..4725b989 100644 --- a/examples/meson.build +++ b/examples/meson.build @@ -3,22 +3,11 @@ wayland_cursor = dependency('wayland-cursor')  executable('simple', 'simple.c', dependencies: wlroots)  executable('pointer', 'pointer.c', dependencies: wlroots) -executable('touch', 'touch.c', dependencies: wlroots) +executable('touch', 'touch.c', 'cat.c', dependencies: wlroots)  executable('tablet', 'tablet.c', dependencies: wlroots) +executable('rotation', 'rotation.c', 'cat.c', dependencies: wlroots)  executable('multi-pointer', 'multi-pointer.c', dependencies: wlroots) - -executable( -	'rotation', -	'rotation.c', -    'cat.c', -	dependencies: wlroots, -) - -executable( -	'output-layout', -	'output-layout.c', -	dependencies: wlroots -) +executable('output-layout', 'output-layout.c', 'cat.c', dependencies: wlroots)  executable(  	'screenshot', | 
