aboutsummaryrefslogtreecommitdiff
path: root/vcpkg/ports/egl/vcpkg-cmake-wrapper.cmake
diff options
context:
space:
mode:
authorEthan Morgan <ethan@gweithio.com>2026-02-14 16:44:06 +0000
committerEthan Morgan <ethan@gweithio.com>2026-02-14 16:44:06 +0000
commit54409423f767d8b1cf30cb7d0efca6b4ca138823 (patch)
treed915ac7828703ce4b963efdd9728a1777ba18c1e /vcpkg/ports/egl/vcpkg-cmake-wrapper.cmake
move to own git serverHEADmaster
Diffstat (limited to 'vcpkg/ports/egl/vcpkg-cmake-wrapper.cmake')
-rw-r--r--vcpkg/ports/egl/vcpkg-cmake-wrapper.cmake22
1 files changed, 22 insertions, 0 deletions
diff --git a/vcpkg/ports/egl/vcpkg-cmake-wrapper.cmake b/vcpkg/ports/egl/vcpkg-cmake-wrapper.cmake
new file mode 100644
index 0000000..aee1e98
--- /dev/null
+++ b/vcpkg/ports/egl/vcpkg-cmake-wrapper.cmake
@@ -0,0 +1,22 @@
+# Wrapper for FindEGL.cmake in extra-cmake-modules (port ecm) and its vendored copies
+
+if(UNIX)
+ find_package(OpenGL COMPONENTS EGL)
+ if(OPENGL_egl_LIBRARY)
+ set(EGL_LIBRARY "${OPENGL_egl_LIBRARY}" CACHE STRING "")
+ set(EGL_INCLUDE_DIR "${OPENGL_EGL_INCLUDE_DIRS}" CACHE STRING "")
+ endif()
+elseif(WIN32)
+ find_package(unofficial-angle CONFIG)
+ if(TARGET unofficial::angle::libEGL)
+ set(EGL_LIBRARY unofficial::angle::libEGL)
+ if(NOT TARGET EGL::EGL)
+ add_library(EGL::EGL INTERFACE IMPORTED)
+ set_target_properties(EGL::EGL PROPERTIES
+ INTERFACE_LINK_LIBRARIES unofficial::angle::libEGL
+ )
+ endif()
+ endif()
+endif()
+
+_find_package(${ARGS})