mirror of
https://codeberg.org/dnkl/yambar.git
synced 2025-06-24 02:55:39 +02:00
cmake: initial support for building wayland-only, or x11-only
This commit is contained in:
parent
f3b225adf7
commit
727d7b343f
7 changed files with 162 additions and 90 deletions
148
CMakeLists.txt
148
CMakeLists.txt
|
@ -23,68 +23,87 @@ set(CMAKE_C_FLAGS "-Wall -Werror ${CMAKE_C_FLAGS}")
|
|||
find_package(Threads REQUIRED)
|
||||
find_package(PkgConfig REQUIRED)
|
||||
|
||||
pkg_check_modules(xcb REQUIRED IMPORTED_TARGET
|
||||
xcb xcb-aux xcb-cursor xcb-event xcb-ewmh xcb-randr xcb-render)
|
||||
pkg_check_modules(xcb-errors IMPORTED_TARGET xcb-errors)
|
||||
pkg_check_modules(wayland REQUIRED IMPORTED_TARGET
|
||||
wayland-client wayland-cursor wlroots)
|
||||
pkg_check_modules(fontconfig REQUIRED IMPORTED_TARGET fontconfig)
|
||||
pkg_check_modules(cairo REQUIRED IMPORTED_TARGET cairo cairo-xcb cairo-ft)
|
||||
pkg_check_modules(cairo REQUIRED IMPORTED_TARGET cairo cairo-ft)
|
||||
pkg_check_modules(yaml REQUIRED IMPORTED_TARGET yaml-0.1)
|
||||
|
||||
add_library(xcb-stuff STATIC EXCLUDE_FROM_ALL xcb.c xcb.h)
|
||||
if (XCB_ERRORS_FOUND)
|
||||
target_compile_definitions(xcb-stuff PRIVATE HAVE_XCB_ERRORS)
|
||||
set(ENABLE_X11 1 CACHE BOOL "Enables support for the XCB (X11) backend")
|
||||
set_property(DIRECTORY . APPEND PROPERTY
|
||||
COMPILE_DEFINITIONS $<$<BOOL:${ENABLE_X11}>:ENABLE_X11>)
|
||||
|
||||
if (ENABLE_X11)
|
||||
pkg_check_modules(xcb REQUIRED IMPORTED_TARGET
|
||||
xcb xcb-aux xcb-cursor xcb-event xcb-ewmh xcb-randr xcb-render cairo-xcb)
|
||||
pkg_check_modules(xcb-errors IMPORTED_TARGET xcb-errors)
|
||||
endif ()
|
||||
|
||||
add_library(bar-xcb STATIC EXCLUDE_FROM_ALL bar/xcb.c bar/xcb.h)
|
||||
target_link_libraries(bar-xcb
|
||||
xcb-stuff PkgConfig::xcb PkgConfig::xcb-errors PkgConfig::cairo)
|
||||
set(ENABLE_WAYLAND 1 CACHE BOOL "Enables support for the wayland backend")
|
||||
set_property(DIRECTORY . APPEND PROPERTY
|
||||
COMPILE_DEFINITIONS $<$<BOOL:${ENABLE_WAYLAND}>:ENABLE_WAYLAND>)
|
||||
|
||||
add_custom_command(
|
||||
OUTPUT wlr-layer-shell-unstable-v1.c
|
||||
COMMAND wayland-scanner private-code < ${PROJECT_SOURCE_DIR}/external/wlroots/protocol/wlr-layer-shell-unstable-v1.xml > wlr-layer-shell-unstable-v1.c
|
||||
VERBATIM
|
||||
MAIN_DEPENDENCY ${PROJECT_SOURCE_DIR}/external/wlroots/protocol/wlr-layer-shell-unstable-v1.xml
|
||||
)
|
||||
add_custom_command(
|
||||
OUTPUT wlr-layer-shell-unstable-v1-client.h
|
||||
COMMAND wayland-scanner client-header < /home/daniel/AUR/wlroots-git/src/wlroots-git/protocol/wlr-layer-shell-unstable-v1.xml > wlr-layer-shell-unstable-v1-client.h
|
||||
VERBATIM
|
||||
MAIN_DEPENDENCY /home/daniel/AUR/wlroots-git/src/wlroots-git/protocol/wlr-layer-shell-unstable-v1.xml
|
||||
)
|
||||
add_custom_command(
|
||||
OUTPUT xdg-shell.c
|
||||
COMMAND wayland-scanner private-code < /usr/share/wayland-protocols/stable/xdg-shell/xdg-shell.xml > xdg-shell.c
|
||||
VERBATIM
|
||||
MAIN_DEPENDENCY /usr/share/wayland-protocols/stable/xdg-shell/xdg-shell.xml
|
||||
)
|
||||
add_custom_command(
|
||||
OUTPUT xdg-output-unstable-v1-client.h
|
||||
COMMAND wayland-scanner client-header < /usr/share/wayland-protocols/unstable/xdg-output/xdg-output-unstable-v1.xml > xdg-output-unstable-v1-client.h
|
||||
VERBATIM
|
||||
MAIN_DEPENDENCY /usr/share/wayland-protocols/unstable/xdg-output/xdg-output-unstable-v1.xml
|
||||
)
|
||||
add_custom_command(
|
||||
OUTPUT xdg-output-unstable-v1.c
|
||||
COMMAND wayland-scanner private-code < /usr/share/wayland-protocols/unstable/xdg-output/xdg-output-unstable-v1.xml > xdg-output-unstable-v1.c
|
||||
VERBATIM
|
||||
MAIN_DEPENDENCY /usr/share/wayland-protocols/unstable/xdg-output/xdg-output-unstable-v1.xml
|
||||
)
|
||||
if (ENABLE_WAYLAND)
|
||||
pkg_check_modules(wayland REQUIRED IMPORTED_TARGET
|
||||
wayland-client wayland-cursor wlroots)
|
||||
endif ()
|
||||
|
||||
add_library(wayland-protocols STATIC EXCLUDE_FROM_ALL
|
||||
wlr-layer-shell-unstable-v1-client.h
|
||||
wlr-layer-shell-unstable-v1.c
|
||||
xdg-shell.c
|
||||
xdg-output-unstable-v1-client.h
|
||||
xdg-output-unstable-v1.c
|
||||
)
|
||||
target_include_directories(wayland-protocols PUBLIC ${CMAKE_CURRENT_BINARY_DIR})
|
||||
if (ENABLE_X11)
|
||||
add_library(xcb-stuff STATIC EXCLUDE_FROM_ALL xcb.c xcb.h)
|
||||
if (XCB_ERRORS_FOUND)
|
||||
target_compile_definitions(xcb-stuff PRIVATE HAVE_XCB_ERRORS)
|
||||
endif ()
|
||||
target_link_libraries(xcb-stuff PkgConfig::xcb PkgConfig::xcb-errors)
|
||||
|
||||
add_library(bar-wayland STATIC EXCLUDE_FROM_ALL bar/wayland.c bar/wayland.h)
|
||||
target_compile_definitions(bar-wayland PRIVATE _GNU_SOURCE)
|
||||
target_link_libraries(
|
||||
bar-wayland wayland-protocols PkgConfig::wayland PkgConfig::cairo)
|
||||
add_library(bar-xcb STATIC EXCLUDE_FROM_ALL bar/xcb.c bar/xcb.h)
|
||||
target_link_libraries(bar-xcb
|
||||
xcb-stuff PkgConfig::cairo)
|
||||
endif ()
|
||||
|
||||
if (ENABLE_WAYLAND)
|
||||
add_custom_command(
|
||||
OUTPUT wlr-layer-shell-unstable-v1.c
|
||||
COMMAND wayland-scanner private-code < ${PROJECT_SOURCE_DIR}/external/wlroots/protocol/wlr-layer-shell-unstable-v1.xml > wlr-layer-shell-unstable-v1.c
|
||||
VERBATIM
|
||||
MAIN_DEPENDENCY ${PROJECT_SOURCE_DIR}/external/wlroots/protocol/wlr-layer-shell-unstable-v1.xml
|
||||
)
|
||||
add_custom_command(
|
||||
OUTPUT wlr-layer-shell-unstable-v1-client.h
|
||||
COMMAND wayland-scanner client-header < /home/daniel/AUR/wlroots-git/src/wlroots-git/protocol/wlr-layer-shell-unstable-v1.xml > wlr-layer-shell-unstable-v1-client.h
|
||||
VERBATIM
|
||||
MAIN_DEPENDENCY /home/daniel/AUR/wlroots-git/src/wlroots-git/protocol/wlr-layer-shell-unstable-v1.xml
|
||||
)
|
||||
add_custom_command(
|
||||
OUTPUT xdg-shell.c
|
||||
COMMAND wayland-scanner private-code < /usr/share/wayland-protocols/stable/xdg-shell/xdg-shell.xml > xdg-shell.c
|
||||
VERBATIM
|
||||
MAIN_DEPENDENCY /usr/share/wayland-protocols/stable/xdg-shell/xdg-shell.xml
|
||||
)
|
||||
add_custom_command(
|
||||
OUTPUT xdg-output-unstable-v1-client.h
|
||||
COMMAND wayland-scanner client-header < /usr/share/wayland-protocols/unstable/xdg-output/xdg-output-unstable-v1.xml > xdg-output-unstable-v1-client.h
|
||||
VERBATIM
|
||||
MAIN_DEPENDENCY /usr/share/wayland-protocols/unstable/xdg-output/xdg-output-unstable-v1.xml
|
||||
)
|
||||
add_custom_command(
|
||||
OUTPUT xdg-output-unstable-v1.c
|
||||
COMMAND wayland-scanner private-code < /usr/share/wayland-protocols/unstable/xdg-output/xdg-output-unstable-v1.xml > xdg-output-unstable-v1.c
|
||||
VERBATIM
|
||||
MAIN_DEPENDENCY /usr/share/wayland-protocols/unstable/xdg-output/xdg-output-unstable-v1.xml
|
||||
)
|
||||
|
||||
add_library(wayland-protocols STATIC EXCLUDE_FROM_ALL
|
||||
wlr-layer-shell-unstable-v1-client.h
|
||||
wlr-layer-shell-unstable-v1.c
|
||||
xdg-shell.c
|
||||
xdg-output-unstable-v1-client.h
|
||||
xdg-output-unstable-v1.c
|
||||
)
|
||||
target_include_directories(wayland-protocols PUBLIC ${CMAKE_CURRENT_BINARY_DIR})
|
||||
|
||||
add_library(bar-wayland STATIC EXCLUDE_FROM_ALL bar/wayland.c bar/wayland.h)
|
||||
target_compile_definitions(bar-wayland PRIVATE _GNU_SOURCE)
|
||||
target_link_libraries(
|
||||
bar-wayland wayland-protocols PkgConfig::wayland PkgConfig::cairo)
|
||||
endif ()
|
||||
|
||||
add_executable(f00bar
|
||||
config.c config.h
|
||||
|
@ -104,7 +123,8 @@ add_executable(f00bar
|
|||
)
|
||||
|
||||
target_link_libraries(f00bar
|
||||
bar-xcb bar-wayland
|
||||
$<$<BOOL:${ENABLE_X11}>:bar-xcb>
|
||||
$<$<BOOL:${ENABLE_WAYLAND}>:bar-wayland>
|
||||
PkgConfig::cairo PkgConfig::fontconfig PkgConfig::yaml
|
||||
${CMAKE_THREAD_LIBS_INIT} ${CMAKE_DL_LIBS})
|
||||
|
||||
|
@ -117,13 +137,23 @@ set_property(TARGET f00bar PROPERTY
|
|||
|
||||
install(TARGETS f00bar DESTINATION bin)
|
||||
|
||||
set(enabled_modules "")
|
||||
set(enabled_particles "")
|
||||
set(enabled_decorations "")
|
||||
|
||||
add_subdirectory(modules)
|
||||
add_subdirectory(particles)
|
||||
add_subdirectory(decorations)
|
||||
|
||||
|
||||
|
||||
if (NOT CORE_PLUGINS_AS_SHARED_LIBRARIES)
|
||||
target_link_libraries(f00bar background stack underline)
|
||||
target_link_libraries(f00bar dynlist empty list map progress-bar ramp string)
|
||||
target_link_libraries(f00bar alsa backlight battery clock i3 label mpd network
|
||||
removables xkb xwindow)
|
||||
target_link_libraries(f00bar ${enabled_decorations})
|
||||
target_link_libraries(f00bar ${enabled_particles})
|
||||
target_link_libraries(f00bar ${enabled_modules})
|
||||
|
||||
foreach (plug ${enabled_decorations} ${enabled_particles} ${enabled_modules})
|
||||
string(REPLACE "-" "_" fixed "${plug}")
|
||||
target_compile_definitions(f00bar PRIVATE "HAVE_PLUGIN_${fixed}")
|
||||
endforeach ()
|
||||
endif ()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue