Add swaylock subproject

This commit is contained in:
Drew DeVault 2015-12-10 07:52:24 -05:00
commit c422529ea3
2 changed files with 42 additions and 0 deletions

29
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
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;
}