diff options
| author | ras0219 <533828+ras0219@users.noreply.github.com> | 2021-01-13 14:41:23 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-01-13 14:41:23 -0800 |
| commit | 4783c36f8c04f584ec4d232958afae9d32bc61d5 (patch) | |
| tree | 7124916dabdd1a6872e4b5040cce016c61a80421 /ports/qt5-base | |
| parent | 8414e15973097e70fe40149e922c402799804b3d (diff) | |
| download | vcpkg-4783c36f8c04f584ec4d232958afae9d32bc61d5.tar.gz vcpkg-4783c36f8c04f584ec4d232958afae9d32bc61d5.zip | |
[boost][many ports] Reformat manifest files in preparation for #15424 (#15616)
Co-authored-by: Robert Schumacher <roschuma@microsoft.com>
Diffstat (limited to 'ports/qt5-base')
| -rw-r--r-- | ports/qt5-base/CONTROL | 13 | ||||
| -rw-r--r-- | ports/qt5-base/vcpkg.json | 44 |
2 files changed, 44 insertions, 13 deletions
diff --git a/ports/qt5-base/CONTROL b/ports/qt5-base/CONTROL deleted file mode 100644 index 00a2e442c..000000000 --- a/ports/qt5-base/CONTROL +++ /dev/null @@ -1,13 +0,0 @@ -Source: qt5-base -Version: 5.15.1 -Port-Version: 4 -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, zstd, libjpeg-turbo, libpng, freetype, pcre2, harfbuzz, sqlite3, libpq, double-conversion, openssl, angle (!windows), egl-registry, icu (!uwp), fontconfig (!windows) - -Feature: latest -Description: Build latest qt version (5.15.1) instead of LTS (latest and LTS are currently the same) - -Feature: mysqlplugin -Build-Depends: libmysql -Description: Build the sql plugin for connecting to mysql databases diff --git a/ports/qt5-base/vcpkg.json b/ports/qt5-base/vcpkg.json new file mode 100644 index 000000000..16827c132 --- /dev/null +++ b/ports/qt5-base/vcpkg.json @@ -0,0 +1,44 @@ +{ + "name": "qt5-base", + "version-string": "5.15.1", + "port-version": 4, + "description": "Qt5 Application Framework Base Module. Includes Core, GUI, Widgets, Networking, SQL, Concurrent and other essential qt components.", + "homepage": "https://www.qt.io/", + "dependencies": [ + { + "name": "angle", + "platform": "!windows" + }, + "double-conversion", + "egl-registry", + { + "name": "fontconfig", + "platform": "!windows" + }, + "freetype", + "harfbuzz", + { + "name": "icu", + "platform": "!uwp" + }, + "libjpeg-turbo", + "libpng", + "libpq", + "openssl", + "pcre2", + "sqlite3", + "zlib", + "zstd" + ], + "features": { + "latest": { + "description": "Build latest qt version (5.15.1) instead of LTS (latest and LTS are currently the same)" + }, + "mysqlplugin": { + "description": "Build the sql plugin for connecting to mysql databases", + "dependencies": [ + "libmysql" + ] + } + } +} |
