sway/swaygrab/CMakeLists.txt

25 lines
276 B
CMake
Raw Normal View History

include_directories(
${JSONC_INCLUDE_DIRS}
${WLC_INCLUDE_DIRS}
)
2015-11-27 15:53:50 +01:00
add_executable(swaygrab
main.c
2015-11-27 15:53:50 +01:00
)
2015-12-01 20:05:46 +01:00
target_link_libraries(swaygrab
sway-common
${JSONC_LIBRARIES}
2015-12-01 20:46:10 +01:00
rt
2016-01-24 02:59:58 +01:00
m
2015-12-01 20:05:46 +01:00
)
2015-11-27 15:53:50 +01:00
install(
2015-12-01 20:46:10 +01:00
TARGETS swaygrab
RUNTIME
DESTINATION bin
COMPONENT runtime
2015-12-01 20:05:46 +01:00
)
2015-12-02 11:47:34 +01:00
add_manpage(swaygrab 1)