mirror of
https://github.com/swaywm/sway.git
synced 2024-11-01 05:57:17 +00:00
cf4ea4c86b
And remove it from the build
29 lines
338 B
CMake
29 lines
338 B
CMake
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
|
|
)
|
|
|
|
if (A2X_FOUND)
|
|
add_manpage(swaygrab 1)
|
|
endif()
|