mirror of
https://github.com/swaywm/sway.git
synced 2024-11-26 01:41:30 +00:00
meson build swaymsg
This commit is contained in:
parent
03182706cf
commit
1d702b6376
|
@ -81,6 +81,7 @@ sway_inc = include_directories('include')
|
||||||
|
|
||||||
subdir('common')
|
subdir('common')
|
||||||
subdir('sway')
|
subdir('sway')
|
||||||
|
subdir('swaymsg')
|
||||||
|
|
||||||
config = configuration_data()
|
config = configuration_data()
|
||||||
config.set('sysconfdir', join_paths(prefix, sysconfdir))
|
config.set('sysconfdir', join_paths(prefix, sysconfdir))
|
||||||
|
|
8
swaymsg/meson.build
Normal file
8
swaymsg/meson.build
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
executable(
|
||||||
|
'swaymsg',
|
||||||
|
'main.c',
|
||||||
|
include_directories: [sway_inc],
|
||||||
|
dependencies: [jsonc],
|
||||||
|
link_with: [lib_sway_common],
|
||||||
|
install: true
|
||||||
|
)
|
Loading…
Reference in a new issue