diff options
| author | Jack·Boos·Yu <47264268+JackBoosY@users.noreply.github.com> | 2021-07-02 01:20:48 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-07-01 10:20:48 -0700 |
| commit | 70391309f25af52f0131dc94af9648d849ab44d0 (patch) | |
| tree | 52623be6b05cf7385a8fb995e197e47be93a3848 | |
| parent | 8bb3f9e4a08a5b71ee93a6f1bcdd7a258bb48392 (diff) | |
| download | vcpkg-70391309f25af52f0131dc94af9648d849ab44d0.tar.gz vcpkg-70391309f25af52f0131dc94af9648d849ab44d0.zip | |
[tgui] Fix feature tool dependency (#18724)
* [tgui] Fix feature tool dependency
* update version record
| -rw-r--r-- | ports/tgui/vcpkg.json | 13 | ||||
| -rw-r--r-- | versions/baseline.json | 2 | ||||
| -rw-r--r-- | versions/t-/tgui.json | 5 |
3 files changed, 17 insertions, 3 deletions
diff --git a/ports/tgui/vcpkg.json b/ports/tgui/vcpkg.json index 96fef2d09..387a20c90 100644 --- a/ports/tgui/vcpkg.json +++ b/ports/tgui/vcpkg.json @@ -1,7 +1,7 @@ { "name": "tgui", "version-date": "2021-04-19", - "port-version": 1, + "port-version": 2, "description": "TGUI is an easy to use, cross-platform, C++ GUI for SFML.", "homepage": "https://tgui.eu", "default-features": [ @@ -35,7 +35,16 @@ ] }, "tool": { - "description": "Build GUI builder" + "description": "Build GUI builder", + "dependencies": [ + { + "name": "tgui", + "features": [ + "sdl2", + "sfml" + ] + } + ] } } } diff --git a/versions/baseline.json b/versions/baseline.json index 16e2116fe..49a612380 100644 --- a/versions/baseline.json +++ b/versions/baseline.json @@ -6150,7 +6150,7 @@ }, "tgui": { "baseline": "2021-04-19", - "port-version": 1 + "port-version": 2 }, "theia": { "baseline": "0.8", diff --git a/versions/t-/tgui.json b/versions/t-/tgui.json index 184813be0..f04e637e7 100644 --- a/versions/t-/tgui.json +++ b/versions/t-/tgui.json @@ -1,6 +1,11 @@ { "versions": [ { + "git-tree": "0fd517c4e738da62e959b791a6cdd952e7bd8345", + "version-date": "2021-04-19", + "port-version": 2 + }, + { "git-tree": "354b5135bda4bcef9c5e7cbfeaff3d457b336e8c", "version-date": "2021-04-19", "port-version": 1 |
