Fixed linking error

master
Scott Anderson 7 years ago
parent 85805da021
commit c81324bd0b

@ -8,11 +8,21 @@ all_libs = [
lib_wlr,
]
executable('simple', 'simple.c', link_with: all_libs)
executable('rotation', 'rotation.c', link_with: all_libs)
executable('pointer', 'pointer.c', link_with: all_libs)
executable('touch', 'touch.c', link_with: all_libs)
executable('tablet', 'tablet.c', link_with: all_libs)
executable('simple', 'simple.c',
dependencies: dep_wlr,
link_with: all_libs)
executable('rotation', 'rotation.c',
dependencies: dep_wlr,
link_with: all_libs)
executable('pointer', 'pointer.c',
dependencies: dep_wlr,
link_with: all_libs)
executable('touch', 'touch.c',
dependencies: dep_wlr,
link_with: all_libs)
executable('tablet', 'tablet.c',
dependencies: dep_wlr,
link_with: all_libs)
compositor_src = [
'compositor/main.c',
@ -20,4 +30,6 @@ compositor_src = [
'compositor/wl_shell.c',
]
executable('compositor', compositor_src, link_with: all_libs)
executable('compositor', compositor_src,
dependencies: dep_wlr,
link_with: all_libs)

Loading…
Cancel
Save