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 GLX target") 22set(DEQP_TARGET_NAME "X11 GLX") 23set(DEQP_SUPPORT_GLX ON) 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 33set(DEQP_PLATFORM_LIBRARIES ${X11_LIBRARIES}) 34include_directories(${X11_INCLUDE_DIR}) 35