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.
30 lines
452 B
30 lines
452 B
9 years ago
|
include_directories(
|
||
|
${PROTOCOLS_INCLUDE_DIRS}
|
||
|
${WAYLAND_CLIENT_INCLUDE_DIR}
|
||
|
${CAIRO_INCLUDE_DIRS}
|
||
|
${GDK_PIXBUF_INCLUDE_DIRS}
|
||
|
${PANGO_INCLUDE_DIRS}
|
||
|
)
|
||
|
|
||
|
add_executable(swaylock
|
||
|
main.c
|
||
|
)
|
||
|
|
||
|
target_link_libraries(swaylock
|
||
|
sway-common
|
||
|
sway-wayland
|
||
|
${WAYLAND_CLIENT_LIBRARIES}
|
||
|
${WAYLAND_CURSOR_LIBRARIES}
|
||
|
${CAIRO_LIBRARIES}
|
||
|
${GDK_PIXBUF_LIBRARIES}
|
||
|
${PANGO_LIBRARIES}
|
||
|
m
|
||
|
)
|
||
|
|
||
|
install(
|
||
|
TARGETS swaylock
|
||
|
RUNTIME
|
||
|
DESTINATION bin
|
||
|
COMPONENT runtime
|
||
|
)
|