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# Android 22message("*** Using Android") 23set(DEQP_TARGET_NAME "Android") 24set(DEQP_SUPPORT_GLES1 ON) 25 26# Necessary for find_library() to search within ANGLE_LIBS 27set(CMAKE_FIND_ROOT_PATH_MODE_LIBRARY_OLD ${CMAKE_FIND_ROOT_PATH_MODE_LIBRARY}) 28set(CMAKE_FIND_ROOT_PATH_MODE_LIBRARY BOTH) 29 30# GLESv1 lib 31if (IS_DIRECTORY ${ANGLE_LIBS}) 32 find_library(GLES1_LIBRARY NAMES GLESv1_CM_angle PATHS ${ANGLE_LIBS} NO_DEFAULT_PATH) 33else() 34 find_library(GLES1_LIBRARY GLESv1_CM PATHS /usr/lib) 35endif() 36set(DEQP_GLES1_LIBRARIES ${GLES1_LIBRARY}) 37 38# GLESv2 lib 39if (IS_DIRECTORY ${ANGLE_LIBS}) 40 find_library(GLES2_LIBRARY NAMES GLESv2_angle PATHS ${ANGLE_LIBS} NO_DEFAULT_PATH) 41else() 42 find_library(GLES2_LIBRARY GLESv2 PATHS /usr/lib) 43endif() 44set(DEQP_GLES2_LIBRARIES ${GLES2_LIBRARY}) 45 46# EGL lib 47if (IS_DIRECTORY ${ANGLE_LIBS}) 48 find_library(EGL_LIBRARY NAMES EGL_angle PATHS ${ANGLE_LIBS} NO_DEFAULT_PATH) 49else() 50 # Disable static linking by clearing EGL_LIBRARY 51 set(EGL_LIBRARY ) 52endif() 53set(DEQP_EGL_LIBRARIES ${EGL_LIBRARY}) 54 55set(CMAKE_FIND_ROOT_PATH_MODE_LIBRARY ${CMAKE_FIND_ROOT_PATH_MODE_LIBRARY_OLD}) 56 57# Platform libs 58find_library(LOG_LIBRARY NAMES log PATHS /usr/lib) 59set(DEQP_PLATFORM_LIBRARIES ${DEQP_PLATFORM_LIBRARIES} ${LOG_LIBRARY}) 60 61if (DE_ANDROID_API GREATER 8) 62 # libandroid for NativeActivity APIs 63 find_library(ANDROID_LIBRARY NAMES android PATHS /usr/lib) 64 set(DEQP_PLATFORM_LIBRARIES ${DEQP_PLATFORM_LIBRARIES} ${ANDROID_LIBRARY}) 65endif () 66 67# Android uses customized execserver 68include_directories(execserver) 69set(DEQP_PLATFORM_LIBRARIES xscore ${DEQP_PLATFORM_LIBRARIES}) 70