sway/swaygrab/CMakeLists.txt
2016-03-24 18:26:01 -04:00

25 lines
276 B
CMake

include_directories(
${JSONC_INCLUDE_DIRS}
${WLC_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)