2014-06-27 14:41:47 +01:00
|
|
|
# - Find XTEST
|
|
|
|
# Find the XTEST libraries
|
|
|
|
#
|
|
|
|
# This module defines the following variables:
|
|
|
|
# XTEST_FOUND - true if XTEST_INCLUDE_DIR & XTEST_LIBRARY are found
|
|
|
|
# XTEST_LIBRARIES - Set when XTEST_LIBRARY is found
|
|
|
|
# XTEST_INCLUDE_DIRS - Set when XTEST_INCLUDE_DIR is found
|
|
|
|
#
|
|
|
|
# XTEST_INCLUDE_DIR - where to find XTest.h, etc.
|
|
|
|
# XTEST_LIBRARY - the XTEST library
|
|
|
|
#
|
|
|
|
|
|
|
|
#=============================================================================
|
2020-08-17 10:48:10 +01:00
|
|
|
# SPDX-FileCopyrightText: 2011 O.S. Systems Software Ltda.
|
|
|
|
# SPDX-FileCopyrightText: 2011 Otavio Salvador <otavio@ossystems.com.br>
|
|
|
|
# SPDX-FileCopyrightText: 2011 Marc-Andre Moreau <marcandre.moreau@gmail.com>
|
2014-06-27 14:41:47 +01:00
|
|
|
#
|
2020-08-17 10:48:10 +01:00
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
2014-06-27 14:41:47 +01:00
|
|
|
#=============================================================================
|
|
|
|
|
|
|
|
find_path(XTEST_INCLUDE_DIR NAMES X11/extensions/XTest.h
|
|
|
|
PATH_SUFFIXES X11/extensions
|
|
|
|
DOC "The XTest include directory"
|
|
|
|
)
|
|
|
|
|
|
|
|
find_library(XTEST_LIBRARY NAMES Xtst
|
|
|
|
DOC "The XTest library"
|
|
|
|
)
|
|
|
|
|
|
|
|
include(FindPackageHandleStandardArgs)
|
|
|
|
FIND_PACKAGE_HANDLE_STANDARD_ARGS(XTest DEFAULT_MSG XTEST_LIBRARY XTEST_INCLUDE_DIR)
|
|
|
|
|
|
|
|
if(XTEST_FOUND)
|
|
|
|
set( XTEST_LIBRARIES ${XTEST_LIBRARY} )
|
|
|
|
set( XTEST_INCLUDE_DIRS ${XTEST_INCLUDE_DIR} )
|
|
|
|
endif()
|
|
|
|
|
|
|
|
mark_as_advanced(XTEST_INCLUDE_DIR XTEST_LIBRARY)
|