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 if ("${PKG_GLES1_INCLUDE_DIRS}" STREQUAL "") 43 # PKG_GLES1_INCLUDE_DIRS empty, see if matching include 44 # path (GLES/gl.h) exists beside library directory 45 set(GLES1_INCLUDE "${GLES1_LIBDIR}/../include") 46 if (EXISTS ${GLES1_INCLUDE}/GLES/gl.h) 47 include_directories(${GLES1_INCLUDE}) 48 else() 49 message(FATAL_ERROR "Could not find include path for GLES1 headers") 50 endif (EXISTS ${GLES1_INCLUDE}/GLES/gl.h) 51 endif ("${PKG_GLES1_INCLUDE_DIRS}" STREQUAL "") 52endif (GLES1_LIBRARIES) 53 54set(DEQP_PLATFORM_LIBRARIES ${X11_LIBRARIES}) 55include_directories(${X11_INCLUDE_DIR}) 56