sway/swaymsg/CMakeLists.txt

24 lines
271 B
CMake
Raw Normal View History

2015-11-26 18:41:24 +01:00
add_executable(swaymsg
main.c
2015-11-26 18:41:24 +01:00
)
include_directories(
${JSONC_INCLUDE_DIRS}
)
target_link_libraries(swaymsg
sway-common
${JSONC_LIBRARIES}
)
2015-11-26 18:41:24 +01:00
install(
2015-12-01 20:46:10 +01:00
TARGETS swaymsg
RUNTIME
DESTINATION bin
COMPONENT runtime
2015-12-01 20:05:46 +01:00
)
2015-12-02 11:47:34 +01:00
if (A2X_FOUND)
add_manpage(swaymsg 1)
endif()