sway/swaygrab/CMakeLists.txt
Mikkel Oscar Lyderik d49282b2c3 swaygrab: make focused output default
This makes swaygrab use the currently focused output as source if no
other output is defined with the `-o, --output <output>` option.
2015-12-17 16:09:03 +01:00

23 lines
252 B
CMake

include_directories(
${JSONC_INCLUDE_DIRS}
)
add_executable(swaygrab
main.c
)
target_link_libraries(swaygrab
sway-common
${JSONC_LIBRARIES}
rt
)
install(
TARGETS swaygrab
RUNTIME
DESTINATION bin
COMPONENT runtime
)
add_manpage(swaygrab 1)