aboutsummaryrefslogtreecommitdiff
path: root/modules/FindXmms.cmake
diff options
context:
space:
mode:
authorAllen Winter <allen.winter@kdab.com>2011-06-28 17:13:05 -0400
committerAllen Winter <allen.winter@kdab.com>2011-06-28 17:13:05 -0400
commite15ffacc69242c89107afbfda6f8ece9f2b56633 (patch)
tree34bed177321c49f883d9d75616947a18f38c037f /modules/FindXmms.cmake
parent5c79bed7250cb2f854bfb4f20e4d266925d94b54 (diff)
parentc06badd8d431583071cad638fea082ca0776a0a3 (diff)
downloadextra-cmake-modules-e15ffacc69242c89107afbfda6f8ece9f2b56633.tar.gz
extra-cmake-modules-e15ffacc69242c89107afbfda6f8ece9f2b56633.tar.bz2
Merge branch 'allen' of /data/kde/trunk/KDE/kdelibs
Diffstat (limited to 'modules/FindXmms.cmake')
-rw-r--r--modules/FindXmms.cmake44
1 files changed, 44 insertions, 0 deletions
diff --git a/modules/FindXmms.cmake b/modules/FindXmms.cmake
new file mode 100644
index 00000000..9f2cdf26
--- /dev/null
+++ b/modules/FindXmms.cmake
@@ -0,0 +1,44 @@
+# Search xmms
+# Once done this will define
+#
+# XMMS_FOUND - system has xmms
+# XMMS_INCLUDE_DIRS - the xmms include directory
+# XMMS_LIBRARIES - Link these to use xmms
+# XMMS_LDFLAGS - for compatibility only, same as XMMS_LIBRARIES
+
+# Copyright (c) 2006, 2007 Laurent Montel, <montel@kde.org>
+# Copyright (c) 2007 Allen Winter <winter@kde.org>
+#
+# Redistribution and use is allowed according to the terms of the BSD license.
+# For details see the accompanying COPYING-CMAKE-SCRIPTS file.
+
+if (XMMS_INCLUDE_DIRS AND XMMS_LIBRARIES)
+ # in cache already
+ set(XMMS_FOUND TRUE)
+
+else (XMMS_INCLUDE_DIRS AND XMMS_LIBRARIES)
+ if (NOT WIN32)
+ # use pkg-config to get the directories and then use these values
+ # in the FIND_PATH() and FIND_LIBRARY() calls
+ find_package(PkgConfig)
+
+ pkg_check_modules(PC_XMMS QUIET xmms)
+ endif(NOT WIN32)
+
+ find_path(XMMS_INCLUDE_DIRS xmmsctrl.h
+ PATHS ${PC_XMMS_INCLUDEDIR} ${PC_XMMS_INCLUDE_DIRS}
+ PATH_SUFFIXES xmms)
+
+ find_library(XMMS_LIBRARIES NAMES xmms
+ PATHS ${PC_XMMS_LIBDIR} ${PC_XMMS_LIBRARY_DIRS})
+
+ include(FindPackageHandleStandardArgs)
+ find_package_handle_standard_args(Xmms DEFAULT_MSG
+ XMMS_LIBRARIES XMMS_INCLUDE_DIRS)
+
+ mark_as_advanced(XMMS_INCLUDE_DIRS XMMS_LIBRARIES)
+
+endif (XMMS_INCLUDE_DIRS AND XMMS_LIBRARIES)
+
+# for compatibility
+set(XMMS_LDFLAGS ${XMMS_LIBRARIES})