[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:
Tobias Blass 2017-07-20 22:14:32 +02:00
parent 1e13a1fd60
commit 8976a47f62
2 changed files with 2 additions and 2 deletions

View File

@ -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")

View File

@ -7,7 +7,7 @@ include_directories(
${XKBCOMMON_INCLUDE_DIRS}
${DBUS_INCLUDE_DIRS}
)
if (enable-tray)
if (ENABLE_TRAY)
file(GLOB tray
tray/*.c
)