https://github.com/swaywm/sway
Revision be6455b295ed5e4ac6c6a3dc756d154c3c908e19 authored by Mikkel Oscar Lyderik on 08 February 2016, 11:31:13 UTC, committed by Mikkel Oscar Lyderik on 08 February 2016, 11:31:13 UTC
1 parent bacd40d
Raw File
Tip revision: be6455b295ed5e4ac6c6a3dc756d154c3c908e19 authored by Mikkel Oscar Lyderik on 08 February 2016, 11:31:13 UTC
Squash trailing whitespace
Tip revision: be6455b
CMakeLists.txt
include_directories(
	${JSONC_INCLUDE_DIRS}
)

add_executable(swaygrab
	main.c
)

target_link_libraries(swaygrab
	sway-common
	${JSONC_LIBRARIES}
	rt
	m
)

install(
	TARGETS swaygrab
	RUNTIME
	DESTINATION bin
	COMPONENT runtime
)

add_manpage(swaygrab 1)
back to top