aboutsummaryrefslogtreecommitdiff
path: root/CMake/FindWlroots.cmake
diff options
context:
space:
mode:
authorDrew DeVault <sir@cmpwn.com>2017-12-01 08:21:01 -0500
committerGitHub <noreply@github.com>2017-12-01 08:21:01 -0500
commit1cfebe827ae53a243ffdd1e09f8b71d4c1a4e254 (patch)
treeb74002984ff80201c02ed9c22ca2fe1cdae98e23 /CMake/FindWlroots.cmake
parent1fbcd097ae2841b5f8f56cf67c1e94605deb0d25 (diff)
parent3546412fc9fb9a51b4316070eff4991c14594127 (diff)
Merge pull request #1479 from acrisci/feature/meson-build
meson build
Diffstat (limited to 'CMake/FindWlroots.cmake')
-rw-r--r--CMake/FindWlroots.cmake20
1 files changed, 0 insertions, 20 deletions
diff --git a/CMake/FindWlroots.cmake b/CMake/FindWlroots.cmake
deleted file mode 100644
index 0e349d3a..00000000
--- a/CMake/FindWlroots.cmake
+++ /dev/null
@@ -1,20 +0,0 @@
-# - Find wlroots
-# Find the wlroots libraries
-#
-# This module defines the following variables:
-# WLR_FOUND - True if wlroots is found
-# WLR_LIBRARIES - wlroots libraries
-# WLR_INCLUDE_DIRS - wlroots include directories
-# WLR_DEFINITIONS - Compiler switches required for using wlroots
-#
-
-find_package(PkgConfig)
-pkg_check_modules(PC_WLR QUIET wlroots)
-find_path(WLR_INCLUDE_DIRS NAMES wlr/config.h HINTS ${PC_WLR_INCLUDE_DIRS})
-find_library(WLR_LIBRARIES NAMES wlroots HINTS ${PC_WLR_LIBRARY_DIRS})
-
-set(WLR_DEFINITIONS ${PC_WLR_CFLAGS_OTHER})
-
-include(FindPackageHandleStandardArgs)
-find_package_handle_standard_args(wlr DEFAULT_MSG WLR_LIBRARIES WLR_INCLUDE_DIRS)
-mark_as_advanced(WLR_LIBRARIES WLR_INCLUDE_DIRS)