1
1
Fork 0
mirror of https://github.com/swaywm/sway synced 2024-06-06 23:06:05 +02:00
sway/swaygrab/CMakeLists.txt
Tomáš Čech 468ddfb34d Fix missing include paths
When headers were installed in more sofisticated places (but package
config knows it right), it revealed missing paths in CMake
configuration. Lets fix it.
2016-04-28 20:08:41 +02:00

26 lines
303 B
CMake

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