mirror of
https://github.com/swaywm/sway.git
synced 2025-10-31 22:25:26 -04:00
Add swaylock subproject
This commit is contained in:
parent
d800d52d37
commit
f80481a37d
3 changed files with 43 additions and 0 deletions
29
swaylock/CMakeLists.txt
Normal file
29
swaylock/CMakeLists.txt
Normal 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
13
swaylock/main.c
Normal 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;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue