I&#39;m trying to build a find module to seek out the EGL library provided as part of the Mali Developer Tool suite under win32.<br><br>The file I want is at C:/Program Files (x86)/ARM/Mali Developer Tools/OpenGL ES Emulator v1.3.0&quot;<br>
<br>I cant for the life of me get it to succeed in finding the path.  Am I doing something wrong with handling the spaces? <br><br># - Try to find EGL<br># Once done this will define<br>#  EGL_FOUND - System has GLES<br>#  EGL_INCLUDE_DIRS - The GLES include directories<br>
#  EGL_LIBRARIES - The libraries needed to use GLES<br><br>SET(EGL_FOUND FALSE)<br><br><br>SET(MALI_DIR &quot;C:/Program Files (x86)/ARM/Mali Developer Tools/OpenGL ES Emulator v1.3.0&quot;)<br><br>find_path(EGL_INCLUDE_DIR<br>
    egl.h<br>    PATHS &quot;${MALI_DIR}/include&quot;<br>    NO_DEFAULT_PATH<br>)<br><br>find_library(EGL_LIBRARY NAMES EGL PATHS &quot;${MALI_DIR}\bin&quot;)<br><br>set(EGL_LIBRARIES ${EGL_LIBRARY} )<br>set(EGL_INCLUDE_DIRS ${EGL_INCLUDE_DIR} )<br>
<br>include(FindPackageHandleStandardArgs)<br># handle the QUIETLY and REQUIRED arguments and set EGL_FOUND to TRUE<br># if all listed variables are TRUE<br>find_package_handle_standard_args(EGL DEFAULT_MSG<br>                                  EGL_LIBRARY EGL_INCLUDE_DIR)<br>
<br>IF(EGL_LIBRARY AND EGL_INCLUDE_DIR)<br>    SET(EGL_FOUND TRUE)<br>ENDIF()<br><br clear="all"><br>-- <br>Jonathan S. Romero<br>