summaryrefslogtreecommitdiff
path: root/mesonbuild/dependencies/data/CMakePathInfo.txt
AgeCommit message (Collapse)Author
2024-07-22cmake: extend library pattern to work on GNU/Hurd as wellPino Toscano
The existing "*-linux-gnu*" works on the Debian multiarch model for Linux architectures; tweak it to be "*-gnu*" so it works also for Hurd architectures. This makes the cmake-based search of dependencies work on Debian GNU/Hurd.
2019-08-03Improve support for crosscompiled CMake modulesMarcin Niestroj
There are two variables that CMake takes into account during find_package() in cross-compiled environments, which are: CMAKE_SYSROOT and CMAKE_FIND_ROOT_PATH. Those are used in cmFindCommon::RerootPaths() function, which blindly prepends all search paths with those specified via CMAKE_SYSROOT and CMAKE_FIND_ROOT_PATH. Extend search paths by using CMAKE_SYSROOT and CMAKE_FIND_ROOT_PATH in a similar way as CMake does, so we successfully find CMake packages information in cross-compiled environments.
2019-02-26Preliminary CMake module searchDaniel Mensinger