Skip to content

Commit

Permalink
Find and link to wlroots
Browse files Browse the repository at this point in the history
  • Loading branch information
ddevault committed Nov 11, 2017
1 parent 7c3b0ff commit 6edc328
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 0 deletions.
20 changes: 20 additions & 0 deletions CMake/FindWlroots.cmake
@@ -0,0 +1,20 @@
# - 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)
1 change: 1 addition & 0 deletions CMakeLists.txt
Expand Up @@ -62,6 +62,7 @@ endif()
find_package(JsonC 0.12.1 REQUIRED)
find_package(PCRE REQUIRED)
find_package(WLC REQUIRED)
find_package(Wlroots REQUIRED)
find_package(Wayland REQUIRED)
find_package(XKBCommon REQUIRED)
find_package(Cairo REQUIRED)
Expand Down
2 changes: 2 additions & 0 deletions sway/CMakeLists.txt
@@ -1,6 +1,7 @@
include_directories(
${PROTOCOLS_INCLUDE_DIRS}
${WLC_INCLUDE_DIRS}
${WLR_INCLUDE_DIRS}
${PCRE_INCLUDE_DIRS}
${JSONC_INCLUDE_DIRS}
${XKBCOMMON_INCLUDE_DIRS}
Expand Down Expand Up @@ -48,6 +49,7 @@ target_link_libraries(sway
sway-protocols
sway-wayland
${WLC_LIBRARIES}
${WLR_LIBRARIES}
${XKBCOMMON_LIBRARIES}
${PCRE_LIBRARIES}
${JSONC_LIBRARIES}
Expand Down

0 comments on commit 6edc328

Please sign in to comment.