meson build swaymsg

This commit is contained in:
Tony Crisci 2017-11-30 11:40:49 -05:00
parent 03182706cf
commit 1d702b6376
2 changed files with 9 additions and 0 deletions

View File

@ -81,6 +81,7 @@ sway_inc = include_directories('include')
subdir('common')
subdir('sway')
subdir('swaymsg')
config = configuration_data()
config.set('sysconfdir', join_paths(prefix, sysconfdir))

8
swaymsg/meson.build Normal file
View File

@ -0,0 +1,8 @@
executable(
'swaymsg',
'main.c',
include_directories: [sway_inc],
dependencies: [jsonc],
link_with: [lib_sway_common],
install: true
)