Merge aosp/upstream-vulkan-cts-1.0-dev into aosp/master
[platform/upstream/VK-GL-CTS.git] / targets / x11_egl_glx / x11_egl_glx.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/GLX target")
22 set(DEQP_TARGET_NAME    "X11 EGL/GLX")
23 set(DEQP_SUPPORT_GLES2  ON)
24 set(DEQP_SUPPORT_GLES3  ON)
25 set(DEQP_SUPPORT_OPENGL ON)
26 set(DEQP_SUPPORT_EGL    ON)
27 set(DEQP_SUPPORT_GLX    ON)
28
29 # Use X11 target
30 set(DEQP_USE_X11                ON)
31
32 find_package(X11)
33 if (NOT X11_FOUND)
34         message(FATAL_ERROR "X11 development package not found")
35 endif ()
36
37 set(DEQP_PLATFORM_LIBRARIES ${X11_LIBRARIES})
38
39 include_directories(${X11_INCLUDE_DIR})