aboutsummaryrefslogtreecommitdiff
path: root/CMake/FindWLC.cmake
diff options
context:
space:
mode:
authorFurkan Sahin <furkan-dev@proton.me>2018-04-12 20:19:54 -0400
committerFurkan Sahin <furkan-dev@proton.me>2018-04-12 20:19:54 -0400
commite62f2f43e2b428a4066fc43e5d2739940f7aa5e9 (patch)
treec653c6d525b471914c01a9d7ae543f521b6138ed /CMake/FindWLC.cmake
parent816bb9d54d2e9e3cbf5e14d7237dc8c8737d6b82 (diff)
parent0cb0c52663a8e27f632988da0f91e4cfb6afddf8 (diff)
Merge branch 'wlroots'
Diffstat (limited to 'CMake/FindWLC.cmake')
-rw-r--r--CMake/FindWLC.cmake20
1 files changed, 0 insertions, 20 deletions
diff --git a/CMake/FindWLC.cmake b/CMake/FindWLC.cmake
deleted file mode 100644
index 15b26ce7..00000000
--- a/CMake/FindWLC.cmake
+++ /dev/null
@@ -1,20 +0,0 @@
-# - Find wlc
-# Find the wlc libraries
-#
-# This module defines the following variables:
-# WLC_FOUND - True if wlc is found
-# WLC_LIBRARIES - wlc libraries
-# WLC_INCLUDE_DIRS - wlc include directories
-# WLC_DEFINITIONS - Compiler switches required for using wlc
-#
-
-find_package(PkgConfig)
-pkg_check_modules(PC_WLC QUIET wlc)
-find_path(WLC_INCLUDE_DIRS NAMES wlc/wlc.h HINTS ${PC_WLC_INCLUDE_DIRS})
-find_library(WLC_LIBRARIES NAMES wlc HINTS ${PC_WLC_LIBRARY_DIRS})
-
-set(WLC_DEFINITIONS ${PC_WLC_CFLAGS_OTHER})
-
-include(FindPackageHandleStandardArgs)
-find_package_handle_standard_args(wlc DEFAULT_MSG WLC_LIBRARIES WLC_INCLUDE_DIRS)
-mark_as_advanced(WLC_LIBRARIES WLC_INCLUDE_DIRS)