mirror of
https://github.com/JGRennison/OpenTTD-patches.git
synced 2024-10-31 15:20:10 +00:00
56d54cf60e
CMake works on all our supported platforms, like MSVC, Mingw, GCC, Clang, and many more. It allows for a single way of doing things, so no longer we need shell scripts and vbs scripts to work on all our supported platforms. Additionally, CMake allows to generate project files for like MSVC, KDevelop, etc. This heavily reduces the lines of code we need to support multiple platforms from a project perspective. Addtiionally, this heavily improves our detection of libraries, etc.
66 lines
1.6 KiB
CMake
66 lines
1.6 KiB
CMake
#[=======================================================================[.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
|
|
)
|