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 /ports/tgui | |
| 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
Diffstat (limited to 'ports/tgui')
| -rw-r--r-- | ports/tgui/vcpkg.json | 13 |
1 files changed, 11 insertions, 2 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" + ] + } + ] } } } |
