You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
311 B

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