mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-24 07:38:59 +08:00
58054d0572
* [angle] Propagate transitive dependencies * [angle] Add usage info for unofficial CMake targets Only the unofficial::angle::libGLESv2 and unofficial::angle::libEGL targets are meant to be used, because they are the targets that no other depends on. Co-authored-by: friendlyanon <friendlyanon@users.noreply.github.com>
8 lines
198 B
CMake
8 lines
198 B
CMake
include(CMakeFindDependencyMacro)
|
|
find_dependency(ZLIB)
|
|
if(UNIX AND NOT APPLE)
|
|
find_dependency(X11 COMPONENTS Xext Xi)
|
|
endif()
|
|
|
|
include("${CMAKE_CURRENT_LIST_DIR}/unofficial-angle-targets.cmake")
|