Add swaylock subproject

This commit is contained in:
Drew DeVault 2015-12-10 07:52:24 -05:00
parent d800d52d37
commit f80481a37d
3 changed files with 43 additions and 0 deletions

View File

@ -63,6 +63,7 @@ add_subdirectory(swaybg)
add_subdirectory(swaymsg)
add_subdirectory(swaygrab)
add_subdirectory(swaybar)
add_subdirectory(swaylock)
install(
FILES ${CMAKE_CURRENT_SOURCE_DIR}/sway.desktop

29
swaylock/CMakeLists.txt Normal file
View File

@ -0,0 +1,29 @@
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
)

13
swaylock/main.c Normal file
View File

@ -0,0 +1,13 @@
#include <stdio.h>
#include <stdlib.h>
#include "log.h"
void sway_terminate(void) {
exit(EXIT_FAILURE);
}
int main(int argc, char **argv) {
init_log(L_INFO);
sway_log(L_INFO, "Hello world");
return 0;
}