mirror of
https://github.com/swaywm/sway.git
synced 2024-11-25 01:11:28 +00:00
c6561f88e4
eventually this will pass a flag to json-c to ignore slashes
22 lines
245 B
CMake
22 lines
245 B
CMake
include_directories(
|
|
${JSONC_INCLUDE_DIRS}
|
|
)
|
|
|
|
add_executable(swaymsg
|
|
main.c
|
|
)
|
|
|
|
target_link_libraries(swaymsg
|
|
sway-common
|
|
${JSONC_LIBRARIES}
|
|
)
|
|
|
|
install(
|
|
TARGETS swaymsg
|
|
RUNTIME
|
|
DESTINATION bin
|
|
COMPONENT runtime
|
|
)
|
|
|
|
add_manpage(swaymsg 1)
|