summaryrefslogtreecommitdiffstats
path: root/CMake/FindWlroots.cmake
diff options
context:
space:
mode:
authorLibravatar Tony Crisci <tony@dubstepdish.com>2017-12-01 05:21:03 -0500
committerLibravatar Tony Crisci <tony@dubstepdish.com>2017-12-01 05:21:03 -0500
commitd071ff08aeae2bbea4ac4a8e56c7a146c13d0869 (patch)
treeb1780435422ac6d778fd4b9c0a4746306dee59fe /CMake/FindWlroots.cmake
parentremove relevant CMakeLists.txt (diff)
downloadsway-d071ff08aeae2bbea4ac4a8e56c7a146c13d0869.tar.gz
sway-d071ff08aeae2bbea4ac4a8e56c7a146c13d0869.tar.zst
sway-d071ff08aeae2bbea4ac4a8e56c7a146c13d0869.zip
remove the rest of cmake
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 @@
1# - Find wlroots
2# Find the wlroots libraries
3#
4# This module defines the following variables:
5# WLR_FOUND - True if wlroots is found
6# WLR_LIBRARIES - wlroots libraries
7# WLR_INCLUDE_DIRS - wlroots include directories
8# WLR_DEFINITIONS - Compiler switches required for using wlroots
9#
10
11find_package(PkgConfig)
12pkg_check_modules(PC_WLR QUIET wlroots)
13find_path(WLR_INCLUDE_DIRS NAMES wlr/config.h HINTS ${PC_WLR_INCLUDE_DIRS})
14find_library(WLR_LIBRARIES NAMES wlroots HINTS ${PC_WLR_LIBRARY_DIRS})
15
16set(WLR_DEFINITIONS ${PC_WLR_CFLAGS_OTHER})
17
18include(FindPackageHandleStandardArgs)
19find_package_handle_standard_args(wlr DEFAULT_MSG WLR_LIBRARIES WLR_INCLUDE_DIRS)
20mark_as_advanced(WLR_LIBRARIES WLR_INCLUDE_DIRS)