1 #-------------------------------------------------------------------------
2 # drawElements CMake utilities
3 # ----------------------------
5 # Copyright 2016 The Android Open Source Project
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
11 # http://www.apache.org/licenses/LICENSE-2.0
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.
19 #-------------------------------------------------------------------------
22 message("*** Using Raspberry Pi")
23 set(DEQP_TARGET_NAME "Raspberry Pi")
24 set(DEQP_SUPPORT_VG ON)
26 find_path(SYSTEM_INCLUDE bcm_host.h PATHS /usr/include /opt/vc/include)
29 ${SYSTEM_INCLUDE}/interface/vcos/pthreads
33 find_library(GLES2_LIBRARY GLESv2 PATHS /usr/lib /opt/vc/lib)
34 set(DEQP_GLES2_LIBRARIES ${GLES2_LIBRARY})
37 find_library(OPENVG_LIBRARY OpenVG PATHS /usr/lib /opt/vc/lib)
38 set(DEQP_VG_LIBRARIES ${OPENVG_LIBRARY})
41 find_library(EGL_LIBRARY EGL PATHS /usr/lib /opt/vc/lib)
42 set(DEQP_EGL_LIBRARIES ${EGL_LIBRARY})
45 find_library(BCM_HOST_LIBRARY NAMES bcm_host PATHS /usr/lib /opt/vc/lib)
46 set(DEQP_PLATFORM_LIBRARIES ${DEQP_PLATFORM_LIBRARIES} ${BCM_HOST_LIBRARY} ${GLES2_LIBRARY} ${EGL_LIBRARY})
48 get_filename_component(SYSLIB_PATH ${BCM_HOST_LIBRARY} PATH)
49 set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -Wl,-rpath-link,${SYSLIB_PATH}")
52 set(TCUTIL_PLATFORM_SRCS
53 raspi/tcuRaspiPlatform.cpp
54 raspi/tcuRaspiPlatform.hpp