diff options
| author | Lily <47812810+LilyWangL@users.noreply.github.com> | 2020-05-19 02:06:20 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-05-18 11:06:20 -0700 |
| commit | 28d7a5e016be9867eb6bb689ca42135cb506f9ac (patch) | |
| tree | 8790554fa84415f2d3f38f29a718dba5e583f9a7 | |
| parent | 47e9a1d1c1f95f26020ccf44c4bef570ac740583 (diff) | |
| download | vcpkg-28d7a5e016be9867eb6bb689ca42135cb506f9ac.tar.gz vcpkg-28d7a5e016be9867eb6bb689ca42135cb506f9ac.zip | |
[qt5-base] Add Xorg dependency libxcursor-dev (#11371)
| -rw-r--r-- | ports/qt5-base/CONTROL | 2 | ||||
| -rw-r--r-- | ports/qt5-base/portfile.cmake | 4 |
2 files changed, 5 insertions, 1 deletions
diff --git a/ports/qt5-base/CONTROL b/ports/qt5-base/CONTROL index 96cad8f54..a27fe040c 100644 --- a/ports/qt5-base/CONTROL +++ b/ports/qt5-base/CONTROL @@ -1,5 +1,5 @@ Source: qt5-base
-Version: 5.12.8-2
+Version: 5.12.8-3
Homepage: https://www.qt.io/
Description: Qt5 Application Framework Base Module. Includes Core, GUI, Widgets, Networking, SQL, Concurrent and other essential qt components.
Build-Depends: zlib, libjpeg-turbo, libpng, freetype, pcre2, harfbuzz, sqlite3, libpq, double-conversion, openssl, angle (!windows), egl-registry, icu (!uwp), fontconfig (!windows)
diff --git a/ports/qt5-base/portfile.cmake b/ports/qt5-base/portfile.cmake index c89806379..709566133 100644 --- a/ports/qt5-base/portfile.cmake +++ b/ports/qt5-base/portfile.cmake @@ -6,6 +6,10 @@ else() option(QT_OPENSSL_LINK "Link against OpenSSL at compile-time." OFF) endif() +if (VCPKG_TARGET_IS_LINUX) + message(WARNING "${PORT} currently requires the following libraries from the system package manager:\n libx11-xcb-dev\n\nThese can be installed on Ubuntu systems via apt-get install libx11-xcb-dev.") +endif() + list(APPEND CMAKE_MODULE_PATH ${CMAKE_CURRENT_LIST_DIR}) list(APPEND CMAKE_MODULE_PATH ${CMAKE_CURRENT_LIST_DIR}/cmake) |
