mirror of
https://github.com/swaywm/sway.git
synced 2025-11-24 06:59:51 -05: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
2 changed files with 2 additions and 2 deletions
|
|
@ -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")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue