diff options
author | Drew DeVault <sir@cmpwn.com> | 2017-08-13 08:26:32 -0400 |
---|---|---|
committer | Drew DeVault <sir@cmpwn.com> | 2017-08-13 08:26:32 -0400 |
commit | d4b4bfb8bcc37c23ba2cb4e9a458504c3b66856b (patch) | |
tree | 5350f3c7bd6e924b28b9fc0a93ab49fe5a7cfd51 /examples | |
parent | e6a7817e45ccd0312198a5040e78b27325b543bd (diff) |
Fix #64
Diffstat (limited to 'examples')
-rw-r--r-- | examples/meson.build | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/examples/meson.build b/examples/meson.build index e3f9cf84..b40f7d8f 100644 --- a/examples/meson.build +++ b/examples/meson.build @@ -1,6 +1,6 @@ lib_shared = static_library('shared', - ['shared.c', 'cat.c'], - dependencies: wlroots) + ['shared.c', 'cat.c'], + dependencies: wlroots) executable('simple', 'simple.c', dependencies: wlroots, link_with: lib_shared) executable('rotation', 'rotation.c', dependencies: wlroots, link_with: lib_shared) @@ -9,11 +9,11 @@ executable('touch', 'touch.c', dependencies: wlroots, link_with: lib_shared) executable('tablet', 'tablet.c', dependencies: wlroots, link_with: lib_shared) compositor_src = [ - 'compositor/main.c', - 'compositor/wl_compositor.c', - 'compositor/wl_shell.c', + 'compositor/main.c', + 'compositor/wl_compositor.c', + 'compositor/wl_shell.c', ] executable('compositor', compositor_src, - dependencies: wlroots, - link_with: lib_shared) + dependencies: wlroots, + link_with: lib_shared) |