mirror of
https://github.com/strawberrymusicplayer/strawberry
synced 2024-12-13 00:56:45 +01:00
eab25bbd17
- Added cmake file to find D-Bus - Removed remaining AddEngine stuff - Fixed cross compiling for windows trying to use dbus after previous commit - Compilation tested on Linux, FreeBSD, OpenBSD and cross compilation from linux for windows using mingw compiler
44 lines
1.2 KiB
CMake
44 lines
1.2 KiB
CMake
if(DBUS_INCLUDE_DIR AND DBUS_LIBRARY AND DBUS_ARCH_INCLUDE_DIR)
|
|
# Already in cache, be silent
|
|
set(DBUS_FIND_QUIETLY TRUE)
|
|
endif(DBUS_INCLUDE_DIR AND DBUS_LIBRARY AND DBUS_ARCH_INCLUDE_DIR)
|
|
|
|
set(DBUS_LIBRARY)
|
|
set(DBUS_INCLUDE_DIR)
|
|
set(DBUS_ARCH_INCLUDE_DIR)
|
|
|
|
FIND_PATH(DBUS_INCLUDE_DIR dbus/dbus.h
|
|
/usr/include
|
|
/usr/include/dbus-1.0
|
|
/usr/local/include
|
|
/usr/local/include/dbus-1.0
|
|
)
|
|
|
|
FIND_PATH(DBUS_ARCH_INCLUDE_DIR dbus/dbus-arch-deps.h
|
|
/usr/lib/include
|
|
/usr/lib/dbus-1.0/include
|
|
/usr/lib64/include
|
|
/usr/lib64/dbus-1.0/include
|
|
/usr/local/lib/include
|
|
/usr/local/lib/dbus-1.0/include
|
|
/usr/local/lib64/include
|
|
/usr/local/lib64/dbus-1.0/include
|
|
)
|
|
|
|
FIND_LIBRARY(DBUS_LIBRARY NAMES dbus-1 dbus
|
|
PATHS
|
|
/usr/lib
|
|
/usr/lib64
|
|
/usr/local/lib
|
|
/usr/local/lib64
|
|
)
|
|
|
|
if(DBUS_INCLUDE_DIR AND DBUS_LIBRARY AND DBUS_ARCH_INCLUDE_DIR)
|
|
MESSAGE(STATUS "D-Bus found: includes in ${DBUS_INCLUDE_DIR}, library in ${DBUS_LIBRARY}")
|
|
set(DBUS_FOUND TRUE)
|
|
else(DBUS_INCLUDE_DIR AND DBUS_LIBRARY AND DBUS_ARCH_INCLUDE_DIR)
|
|
MESSAGE(STATUS "D-Bus not found")
|
|
endif(DBUS_INCLUDE_DIR AND DBUS_LIBRARY AND DBUS_ARCH_INCLUDE_DIR)
|
|
|
|
MARK_AS_ADVANCED(DBUS_INCLUDE_DIR DBUS_LIBRARY DBUS_ARCH_INCLUDE_DIR)
|