Fix missing dependency on sparse binds
[platform/upstream/VK-GL-CTS.git] / targets / x11_egl / x11_egl.cmake
1 #-------------------------------------------------------------------------
2 # drawElements CMake utilities
3 # ----------------------------
4 #
5 # Copyright 2016 The Android Open Source Project
6 #
7 # Licensed under the Apache License, Version 2.0 (the "License");
8 # you may not use this file except in compliance with the License.
9 # You may obtain a copy of the License at
10 #
11 #      http://www.apache.org/licenses/LICENSE-2.0
12 #
13 # Unless required by applicable law or agreed to in writing, software
14 # distributed under the License is distributed on an "AS IS" BASIS,
15 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 # See the License for the specific language governing permissions and
17 # limitations under the License.
18 #
19 #-------------------------------------------------------------------------
20
21 message("*** Using X11 EGL target")
22 set(DEQP_TARGET_NAME    "X11 EGL")
23 set(DEQP_SUPPORT_GLX    OFF)
24
25 # Use X11 target
26 set(DEQP_USE_X11        ON)
27
28 find_package(X11)
29 if (NOT X11_FOUND)
30         message(FATAL_ERROR "X11 development package not found")
31 endif ()
32
33 # Support GLES1, we use pkg-config because some distributions do not ship
34 # GLES1 libraries and headers, this way user can override search path by
35 # using PKG_CONFIG_PATH environment variable
36 FIND_PACKAGE(PkgConfig)
37 PKG_CHECK_MODULES(GLES1 glesv1_cm)
38 if (GLES1_LIBRARIES)
39         set(DEQP_SUPPORT_GLES1  ON)
40         set(DEQP_GLES1_LIBRARIES ${GLES1_LIBRARIES})
41         if (GLES1_LIBRARY_DIRS)
42                 set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -L${GLES1_LIBRARY_DIRS}")
43         endif (GLES1_LIBRARY_DIRS)
44         include_directories(${GLES1_INCLUDE_DIRS})
45 endif (GLES1_LIBRARIES)
46
47 set(DEQP_PLATFORM_LIBRARIES ${X11_LIBRARIES})
48 include_directories(${X11_INCLUDE_DIR})