summaryrefslogtreecommitdiffstats
path: root/CMake/FindWLC.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/FindWLC.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/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 @@
1# - Find wlc
2# Find the wlc libraries
3#
4# This module defines the following variables:
5# WLC_FOUND - True if wlc is found
6# WLC_LIBRARIES - wlc libraries
7# WLC_INCLUDE_DIRS - wlc include directories
8# WLC_DEFINITIONS - Compiler switches required for using wlc
9#
10
11find_package(PkgConfig)
12pkg_check_modules(PC_WLC QUIET wlc)
13find_path(WLC_INCLUDE_DIRS NAMES wlc/wlc.h HINTS ${PC_WLC_INCLUDE_DIRS})
14find_library(WLC_LIBRARIES NAMES wlc HINTS ${PC_WLC_LIBRARY_DIRS})
15
16set(WLC_DEFINITIONS ${PC_WLC_CFLAGS_OTHER})
17
18include(FindPackageHandleStandardArgs)
19find_package_handle_standard_args(wlc DEFAULT_MSG WLC_LIBRARIES WLC_INCLUDE_DIRS)
20mark_as_advanced(WLC_LIBRARIES WLC_INCLUDE_DIRS)