sway/swaymsg/meson.build
Markus Ongyerth 4a967f2d9d move sway specific ipc code out of common
Moves the ipc-client code out of common into a dedicated ipc library to
allow moving swaybg/swaylock into a separate project more easily
2018-05-24 21:59:55 +02:00

8 lines
182 B
Meson

executable(
'swaymsg',
'main.c',
include_directories: [sway_inc],
dependencies: [jsonc, wlroots],
link_with: [lib_sway_common, lib_sway_ipc],
install: true
)