mirror of
https://github.com/SFML/SFML.git
synced 2024-11-25 04:41:05 +08:00
f24ca9a840
* Changed newlines to \n. * Removed whitespace before colons. * Fixed several alignments.
15 lines
333 B
CMake
15 lines
333 B
CMake
#
|
|
# Try to find GLES library and include path.
|
|
# Once done this will define
|
|
#
|
|
# GLES_FOUND
|
|
# GLES_INCLUDE_PATH
|
|
# GLES_LIBRARY
|
|
#
|
|
|
|
find_path(GLES_INCLUDE_DIR GLES/gl.h)
|
|
find_library(GLES_LIBRARY NAMES GLESv1_CM)
|
|
|
|
include(FindPackageHandleStandardArgs)
|
|
find_package_handle_standard_args(GLES DEFAULT_MSG GLES_LIBRARY GLES_INCLUDE_DIR)
|