mirror of
https://github.com/swaywm/sway.git
synced 2024-11-10 20:44:01 +01:00
Add swaylock subproject
This commit is contained in:
parent
d800d52d37
commit
f80481a37d
@ -63,6 +63,7 @@ add_subdirectory(swaybg)
|
|||||||
add_subdirectory(swaymsg)
|
add_subdirectory(swaymsg)
|
||||||
add_subdirectory(swaygrab)
|
add_subdirectory(swaygrab)
|
||||||
add_subdirectory(swaybar)
|
add_subdirectory(swaybar)
|
||||||
|
add_subdirectory(swaylock)
|
||||||
|
|
||||||
install(
|
install(
|
||||||
FILES ${CMAKE_CURRENT_SOURCE_DIR}/sway.desktop
|
FILES ${CMAKE_CURRENT_SOURCE_DIR}/sway.desktop
|
||||||
|
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…
Reference in New Issue
Block a user