mirror of
https://github.com/swaywm/sway.git
synced 2024-11-10 12:33:50 +01:00
[swaybar] fix non-dbus build
Swaybar's CMakeLists.txt uses the enable-tray option directly to decide whether to build the tray. This leads to a compilation error if dbus is not installed. This patch uses the ENABLE_TRAY variable instead, which is only true if the user enabled the tray *and* dbus is available.
This commit is contained in:
parent
1e13a1fd60
commit
8976a47f62
@ -95,7 +95,7 @@ endif()
|
||||
|
||||
if (enable-tray)
|
||||
if (DBUS_FOUND)
|
||||
set(ENABLE_TRAY)
|
||||
set(ENABLE_TRAY TRUE)
|
||||
add_definitions(-DENABLE_TRAY)
|
||||
else()
|
||||
message(WARNING "Tray required but DBus was not found. Tray will not be included")
|
||||
|
@ -7,7 +7,7 @@ include_directories(
|
||||
${XKBCOMMON_INCLUDE_DIRS}
|
||||
${DBUS_INCLUDE_DIRS}
|
||||
)
|
||||
if (enable-tray)
|
||||
if (ENABLE_TRAY)
|
||||
file(GLOB tray
|
||||
tray/*.c
|
||||
)
|
||||
|
Loading…
Reference in New Issue
Block a user