aboutsummaryrefslogtreecommitdiff
path: root/attic/modules/FindXmms.cmake
diff options
context:
space:
mode:
authorChristophe Giboudeaux <christophe@krop.fr>2021-03-29 20:28:58 +0200
committerChristophe Giboudeaux <christophe@krop.fr>2021-04-06 19:59:17 +0000
commit272352969834598cfd20f3e8b15916aa3ccebbbb (patch)
treed0d831203f0816ee2d4edecb526cdbdec64ea3d4 /attic/modules/FindXmms.cmake
parentd88db6a1469bdcb48e64f265d35a6f7867767b54 (diff)
downloadextra-cmake-modules-272352969834598cfd20f3e8b15916aa3ccebbbb.tar.gz
extra-cmake-modules-272352969834598cfd20f3e8b15916aa3ccebbbb.tar.bz2
Clean ECM's attic
Diffstat (limited to 'attic/modules/FindXmms.cmake')
-rw-r--r--attic/modules/FindXmms.cmake44
1 files changed, 0 insertions, 44 deletions
diff --git a/attic/modules/FindXmms.cmake b/attic/modules/FindXmms.cmake
deleted file mode 100644
index b687d120..00000000
--- a/attic/modules/FindXmms.cmake
+++ /dev/null
@@ -1,44 +0,0 @@
-# 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()
-
- 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})