summaryrefslogtreecommitdiff
path: root/cmake
diff options
context:
space:
mode:
authorCharles Pigott <charlespigott@googlemail.com>2020-12-06 18:49:28 +0000
committerCharles Pigott <charlespigott@googlemail.com>2021-01-02 19:46:08 +0000
commit3dfee979a7e486b8d90f6398ea557d2889855059 (patch)
treece9eed1f60a868f30b80d08e2033d7615042f9b4 /cmake
parentc288eba81389d07e27b32f28c6dc4dc518824d2b (diff)
downloadopenttd-3dfee979a7e486b8d90f6398ea557d2889855059.tar.xz
Codechange: Drop libxdg-basedir dependency in favour of finding the directories ourselves
Diffstat (limited to 'cmake')
-rw-r--r--cmake/FindXDG_basedir.cmake65
1 files changed, 0 insertions, 65 deletions
diff --git a/cmake/FindXDG_basedir.cmake b/cmake/FindXDG_basedir.cmake
deleted file mode 100644
index a33e9760d..000000000
--- a/cmake/FindXDG_basedir.cmake
+++ /dev/null
@@ -1,65 +0,0 @@
-#[=======================================================================[.rst:
-FindXDG_basedir
--------
-
-Finds the xdg-basedir library.
-
-Result Variables
-^^^^^^^^^^^^^^^^
-
-This will define the following variables:
-
-``XDG_basedir_FOUND``
- True if the system has the xdg-basedir library.
-``XDG_basedir_INCLUDE_DIRS``
- Include directories needed to use xdg-basedir.
-``XDG_basedir_LIBRARIES``
- Libraries needed to link to xdg-basedir.
-``XDG_basedir_VERSION``
- The version of the xdg-basedir library which was found.
-
-Cache Variables
-^^^^^^^^^^^^^^^
-
-The following cache variables may also be set:
-
-``XDG_basedir_INCLUDE_DIR``
- The directory containing ``xdg-basedir.h``.
-``XDG_basedir_LIBRARY``
- The path to the xdg-basedir library.
-
-#]=======================================================================]
-
-find_package(PkgConfig QUIET)
-pkg_check_modules(PC_XDG_basedir QUIET libxdg-basedir)
-
-find_path(XDG_basedir_INCLUDE_DIR
- NAMES basedir.h
- PATHS ${PC_XDG_basedir_INCLUDE_DIRS}
-)
-
-find_library(XDG_basedir_LIBRARY
- NAMES xdg-basedir
- PATHS ${PC_XDG_basedir_LIBRARY_DIRS}
-)
-
-set(XDG_basedir_VERSION ${PC_XDG_basedir_VERSION})
-
-include(FindPackageHandleStandardArgs)
-find_package_handle_standard_args(XDG_basedir
- FOUND_VAR XDG_basedir_FOUND
- REQUIRED_VARS
- XDG_basedir_LIBRARY
- XDG_basedir_INCLUDE_DIR
- VERSION_VAR XDG_basedir_VERSION
-)
-
-if(XDG_basedir_FOUND)
- set(XDG_basedir_LIBRARIES ${XDG_basedir_LIBRARY})
- set(XDG_basedir_INCLUDE_DIRS ${XDG_basedir_INCLUDE_DIR})
-endif()
-
-mark_as_advanced(
- XDG_basedir_INCLUDE_DIR
- XDG_basedir_LIBRARY
-)