cmake/FindWayland: cleanup

* use consistent naming
* remove trailing blanks
This commit is contained in:
Bernhard Miklautz 2016-02-25 21:57:56 +01:00
parent 16ba8f377d
commit 541abee480

View File

@ -1,5 +1,5 @@
# - Finds Wayland # - Finds Wayland
# Find the Wayland libraries that are needed for UWAC # Find the Wayland libraries that are needed for UWAC
# #
# This module defines the following variables: # This module defines the following variables:
# WAYLAND_FOUND - true if UWAC has been found # WAYLAND_FOUND - true if UWAC has been found
@ -28,29 +28,29 @@
include(FindPkgConfig) include(FindPkgConfig)
if(PKG_CONFIG_FOUND) if(PKG_CONFIG_FOUND)
pkg_check_modules(WAYLAND_SCANNER_PKG wayland-scanner) pkg_check_modules(WAYLAND_SCANNER_PC wayland-scanner)
pkg_check_modules(WAYLAND_CLIENT_PKG wayland-client) pkg_check_modules(WAYLAND_CLIENT_PC wayland-client)
pkg_check_modules(XKBCOMMON_PC_PKG xkbcommon) pkg_check_modules(XKBCOMMON_PC xkbcommon)
endif() endif()
find_program(WAYLAND_SCANNER wayland-scanner find_program(WAYLAND_SCANNER wayland-scanner
HINTS "${WAYLAND_SCANNER_PKG_PREFIX}/bin" HINTS "${WAYLAND_SCANNER_PC_PREFIX}/bin"
) )
find_path(WAYLAND_INCLUDE_DIR wayland-client.h find_path(WAYLAND_INCLUDE_DIR wayland-client.h
HINTS ${WAYLAND_CLIENT_PKG_INCLUDE_DIRS} HINTS ${WAYLAND_CLIENT_PC_INCLUDE_DIRS}
) )
find_library(WAYLAND_LIBS find_library(WAYLAND_LIBS
NAMES "wayland-client" NAMES "wayland-client"
HINTS "${WAYLAND_CLIENT_PKG_LIBRARY_DIRS}" HINTS "${WAYLAND_CLIENT_PC_LIBRARY_DIRS}"
) )
find_path(XKBCOMMON_INCLUDE_DIR xkbcommon/xkbcommon.h find_path(XKBCOMMON_INCLUDE_DIR xkbcommon/xkbcommon.h
HINTS ${XKBCOMMON_PC_INCLUDE_DIRS} HINTS ${XKBCOMMON_PC_INCLUDE_DIRS}
) )
find_library(XKBCOMMON_LIBS find_library(XKBCOMMON_LIBS
NAMES xkbcommon NAMES xkbcommon
HINTS "${XKBCOMMON_PC_LIBRARY_DIRS}" HINTS "${XKBCOMMON_PC_LIBRARY_DIRS}"
) )