aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNancyLi1013 <46708020+NancyLi1013@users.noreply.github.com>2020-03-17 05:50:40 +0800
committerGitHub <noreply@github.com>2020-03-16 14:50:40 -0700
commit313d88c4df80e490f0ee0a7b5b2b7111c918104d (patch)
treeee4a566d8c3f20351e79c694040d42d6b078e38f
parent31cca075630fbb438c0ec4e942f3502b6995c235 (diff)
downloadvcpkg-313d88c4df80e490f0ee0a7b5b2b7111c918104d.tar.gz
vcpkg-313d88c4df80e490f0ee0a7b5b2b7111c918104d.zip
[angle] Add warning message (#10414)
-rw-r--r--ports/angle/CONTROL2
-rw-r--r--ports/angle/portfile.cmake1
2 files changed, 2 insertions, 1 deletions
diff --git a/ports/angle/CONTROL b/ports/angle/CONTROL
index 463195880..0fb81989d 100644
--- a/ports/angle/CONTROL
+++ b/ports/angle/CONTROL
@@ -1,5 +1,5 @@
Source: angle
-Version: 2019-12-31-1
+Version: 2019-12-31-2
Homepage: https://github.com/google/angle
Description: A conformant OpenGL ES implementation for Windows, Mac and Linux.
The goal of ANGLE is to allow users of multiple operating systems to seamlessly run WebGL and other OpenGL ES content by translating OpenGL ES API calls to one of the hardware-supported APIs available for that platform. ANGLE currently provides translation from OpenGL ES 2.0 and 3.0 to desktop OpenGL, OpenGL ES, Direct3D 9, and Direct3D 11. Support for translation from OpenGL ES to Vulkan is underway, and future plans include compute shader support (ES 3.1) and MacOS support.
diff --git a/ports/angle/portfile.cmake b/ports/angle/portfile.cmake
index d5c091e6b..9a28591ad 100644
--- a/ports/angle/portfile.cmake
+++ b/ports/angle/portfile.cmake
@@ -2,6 +2,7 @@ vcpkg_check_linkage(ONLY_DYNAMIC_LIBRARY)
if (VCPKG_TARGET_IS_LINUX)
message(WARNING "Building with a gcc version less than 6.1 is not supported.")
+ message(WARNING "${PORT} currently requires the following libraries from the system package manager:\n libx11-dev\n libmesa-dev\n libxi-dev\n libxext-dev\n\nThese can be installed on Ubuntu systems via apt-get install libx11-dev libmesa-dev libxi-dev libxext-dev.")
endif()
if (VCPKG_TARGET_ARCHITECTURE STREQUAL "x86")