Revision 78740b978539144db15ce95d04904576b8fb4878 authored by Drew DeVault on 12 April 2018, 15:06:49 UTC, committed by GitHub on 12 April 2018, 15:06:49 UTC
<sway/man: In sway(5) treat scale as keyword for output command>
2 parent s 22db601 + bd3e4e3
Raw File
CMakeLists.txt
add_executable(swaymsg
	main.c
)

include_directories(
	${JSONC_INCLUDE_DIRS}
)

target_link_libraries(swaymsg
	sway-common
	${JSONC_LIBRARIES}
)

install(
	TARGETS swaymsg
	RUNTIME
	DESTINATION bin
	COMPONENT runtime
)

if (A2X_FOUND)
    add_manpage(swaymsg 1)
endif()
back to top