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 21message("*** Using X11 EGL target") 22set(DEQP_TARGET_NAME "X11 EGL") 23set(DEQP_SUPPORT_GLX OFF) 24 25# Use X11 target 26set(DEQP_USE_X11 ON) 27 28find_package(X11) 29if (NOT X11_FOUND) 30 message(FATAL_ERROR "X11 development package not found") 31endif () 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 36FIND_PACKAGE(PkgConfig) 37PKG_CHECK_MODULES(GLES1 glesv1_cm) 38if (GLES1_LIBRARIES) 39 set(DEQP_SUPPORT_GLES1 ON) 40 set(DEQP_GLES1_LIBRARIES ${GLES1_LIBRARIES}) 41 set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -L${GLES1_LIBRARY_DIRS}") 42 include_directories(${GLES1_INCLUDE_DIRS}) 43endif (GLES1_LIBRARIES) 44 45set(DEQP_PLATFORM_LIBRARIES ${X11_LIBRARIES}) 46include_directories(${X11_INCLUDE_DIR}) 47