mirror of
https://github.com/swaywm/sway.git
synced 2024-11-10 12:33:50 +01:00
Add swaybar subproject
This commit is contained in:
parent
fd4cf52518
commit
63cf8e48c4
@ -37,6 +37,7 @@ include_directories("${CMAKE_CURRENT_SOURCE_DIR}/include")
|
||||
add_subdirectory(swaybg)
|
||||
add_subdirectory(swaymsg)
|
||||
add_subdirectory(swaygrab)
|
||||
add_subdirectory(swaybar)
|
||||
|
||||
find_package(XKBCommon REQUIRED)
|
||||
find_package(WLC REQUIRED)
|
||||
|
36
swaybar/CMakeLists.txt
Normal file
36
swaybar/CMakeLists.txt
Normal file
@ -0,0 +1,36 @@
|
||||
project(swaybar)
|
||||
|
||||
find_package(Wayland REQUIRED)
|
||||
find_package(Cairo REQUIRED)
|
||||
find_package(Pango REQUIRED)
|
||||
|
||||
include(Wayland)
|
||||
set(CMAKE_CURRENT_BINARY_DIR ${CMAKE_CURRENT_BINARY_DIR}/../bin/)
|
||||
WAYLAND_ADD_PROTOCOL_CLIENT(proto-xdg-shell "${PROJECT_SOURCE_DIR}/../protocols/xdg-shell.xml" xdg-shell)
|
||||
WAYLAND_ADD_PROTOCOL_CLIENT(proto-desktop-shell "${PROJECT_SOURCE_DIR}/../protocols/desktop-shell.xml" desktop-shell)
|
||||
|
||||
include_directories(
|
||||
${WAYLAND_CLIENT_INCLUDE_DIR}
|
||||
${CAIRO_INCLUDE_DIRS}
|
||||
${PANGO_INCLUDE_DIRS}
|
||||
${CMAKE_CURRENT_BINARY_DIR}
|
||||
)
|
||||
|
||||
FILE(GLOB sources ${PROJECT_SOURCE_DIR}/*.c)
|
||||
FILE(GLOB common ${PROJECT_SOURCE_DIR}/../common/*.c)
|
||||
FILE(GLOB wl_sources ${PROJECT_SOURCE_DIR}/../wayland/*.c)
|
||||
|
||||
add_executable(swaybar
|
||||
${sources}
|
||||
${wl_sources}
|
||||
${common}
|
||||
${proto-xdg-shell}
|
||||
${proto-desktop-shell}
|
||||
)
|
||||
|
||||
TARGET_LINK_LIBRARIES(swaybar ${WAYLAND_CLIENT_LIBRARIES} ${WAYLAND_CURSOR_LIBRARIES} ${CAIRO_LIBRARIES} ${PANGO_LIBRARIES} m)
|
||||
|
||||
install(
|
||||
TARGETS swaybar
|
||||
RUNTIME DESTINATION bin
|
||||
COMPONENT runtime)
|
20
swaybar/main.c
Normal file
20
swaybar/main.c
Normal file
@ -0,0 +1,20 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include "client/registry.h"
|
||||
#include "client/window.h"
|
||||
#include "log.h"
|
||||
|
||||
struct registry *registry;
|
||||
struct window *window;
|
||||
|
||||
void sway_terminate(void) {
|
||||
window_teardown(window);
|
||||
registry_teardown(registry);
|
||||
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