You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and dots ('.'), can be up to 35 characters long. Letters must be lowercase.
16 lines
445 B
16 lines
445 B
# Find GLESv1 |
|
# |
|
# GLESv1_INCLUDE_DIR |
|
# GLESv1_LIBRARY |
|
# GLESv1_FOUND |
|
|
|
find_path(GLESv1_INCLUDE_DIR NAMES GLES/gl.h PATHS /opt/vc/include) |
|
|
|
set(GLESv1_NAMES ${GLESv1_NAMES} GLESv1_CM libGLES_CM) |
|
find_library(GLESv1_LIBRARY NAMES ${GLESv1_NAMES} PATHS /opt/vc/lib) |
|
|
|
include(FindPackageHandleStandardArgs) |
|
find_package_handle_standard_args(GLESv1 DEFAULT_MSG GLESv1_LIBRARY GLESv1_INCLUDE_DIR) |
|
|
|
mark_as_advanced(GLESv1_INCLUDE_DIR GLESv1_LIBRARY) |
|
|
|
|