Initial commit - from Precise source
[freerdp-ubuntu-pcb-backport.git] / cmake / FindXdamage.cmake
1 # - Find XDAMAGE
2 # Find the XDAMAGE libraries
3 #
4 #  This module defines the following variables:
5 #     XDAMAGE_FOUND        - true if XDAMAGE_INCLUDE_DIR & XDAMAGE_LIBRARY are found
6 #     XDAMAGE_LIBRARIES    - Set when XDAMAGE_LIBRARY is found
7 #     XDAMAGE_INCLUDE_DIRS - Set when XDAMAGE_INCLUDE_DIR is found
8 #
9 #     XDAMAGE_INCLUDE_DIR  - where to find Xdamage.h, etc.
10 #     XDAMAGE_LIBRARY      - the XDAMAGE library
11 #
12
13 #=============================================================================
14 # Copyright 2011 O.S. Systems Software Ltda.
15 # Copyright 2011 Otavio Salvador <otavio@ossystems.com.br>
16 # Copyright 2011 Marc-Andre Moreau <marcandre.moreau@gmail.com>
17 #
18 # Licensed under the Apache License, Version 2.0 (the "License");
19 # you may not use this file except in compliance with the License.
20 # You may obtain a copy of the License at
21 #
22 #     http://www.apache.org/licenses/LICENSE-2.0
23 #
24 # Unless required by applicable law or agreed to in writing, software
25 # distributed under the License is distributed on an "AS IS" BASIS,
26 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
27 # See the License for the specific language governing permissions and
28 # limitations under the License.
29 #=============================================================================
30
31 find_path(XDAMAGE_INCLUDE_DIR NAMES X11/extensions/Xdamage.h
32           PATH_SUFFIXES X11/extensions
33           DOC "The Xdamage include directory"
34 )
35
36 find_library(XDAMAGE_LIBRARY NAMES Xdamage
37           DOC "The Xdamage library"
38 )
39
40 include(FindPackageHandleStandardArgs)
41 FIND_PACKAGE_HANDLE_STANDARD_ARGS(Xdamage DEFAULT_MSG XDAMAGE_LIBRARY XDAMAGE_INCLUDE_DIR)
42
43 if(XDAMAGE_FOUND)
44   set( XDAMAGE_LIBRARIES ${XDAMAGE_LIBRARY} )
45   set( XDAMAGE_INCLUDE_DIRS ${XDAMAGE_INCLUDE_DIR} )
46 endif()
47
48
49 mark_as_advanced(XDAMAGE_INCLUDE_DIR XDAMAGE_LIBRARY)