mirror of
https://github.com/swaywm/sway.git
synced 2024-11-16 05:03:17 +00:00
Merge pull request #1285 from tobiasblass/fix_non_dbus_build
[swaybar] fix non-dbus build
This commit is contained in:
commit
47754642f8
|
@ -95,7 +95,7 @@ endif()
|
||||||
|
|
||||||
if (enable-tray)
|
if (enable-tray)
|
||||||
if (DBUS_FOUND)
|
if (DBUS_FOUND)
|
||||||
set(ENABLE_TRAY)
|
set(ENABLE_TRAY TRUE)
|
||||||
add_definitions(-DENABLE_TRAY)
|
add_definitions(-DENABLE_TRAY)
|
||||||
else()
|
else()
|
||||||
message(WARNING "Tray required but DBus was not found. Tray will not be included")
|
message(WARNING "Tray required but DBus was not found. Tray will not be included")
|
||||||
|
|
|
@ -7,7 +7,7 @@ include_directories(
|
||||||
${XKBCOMMON_INCLUDE_DIRS}
|
${XKBCOMMON_INCLUDE_DIRS}
|
||||||
${DBUS_INCLUDE_DIRS}
|
${DBUS_INCLUDE_DIRS}
|
||||||
)
|
)
|
||||||
if (enable-tray)
|
if (ENABLE_TRAY)
|
||||||
file(GLOB tray
|
file(GLOB tray
|
||||||
tray/*.c
|
tray/*.c
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in a new issue