diff options
| author | Liu Chenxin <chenxinleo@163.com> | 2021-07-23 05:54:47 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-07-22 14:54:47 -0700 |
| commit | 2a0c48a32dc82fe4416605fae8ac897bc2dab4da (patch) | |
| tree | 88554232bc5d660af7d3493ff1b43dadcaa80a81 /ports | |
| parent | f98d75efc7934d965ac8bb6e304b373c7673c5a3 (diff) | |
| download | vcpkg-2a0c48a32dc82fe4416605fae8ac897bc2dab4da.tar.gz vcpkg-2a0c48a32dc82fe4416605fae8ac897bc2dab4da.zip | |
[nana]add MinGW subsystem support for nana (#18911)
* add MinGW subsystem support for nana
* update port version
* [nana] update versions
* format-manifest
Co-authored-by: Billy Robert ONeal III <bion@microsoft.com>
Co-authored-by: Jonliu1993 <13720414433@163.com>
Diffstat (limited to 'ports')
| -rw-r--r-- | ports/nana/CONTROL | 6 | ||||
| -rw-r--r-- | ports/nana/vcpkg.json | 19 |
2 files changed, 19 insertions, 6 deletions
diff --git a/ports/nana/CONTROL b/ports/nana/CONTROL deleted file mode 100644 index 608fb8747..000000000 --- a/ports/nana/CONTROL +++ /dev/null @@ -1,6 +0,0 @@ -Source: nana -Version: 1.7.4 -Port-Version: 1 -Homepage: https://github.com/cnjinhao/nana -Description: Cross-platform library for GUI programming in modern C++ style. -Build-Depends: libpng, libjpeg-turbo, freetype (!uwp&&!windows), fontconfig (!uwp&&!windows) diff --git a/ports/nana/vcpkg.json b/ports/nana/vcpkg.json new file mode 100644 index 000000000..c82984e87 --- /dev/null +++ b/ports/nana/vcpkg.json @@ -0,0 +1,19 @@ +{ + "name": "nana", + "version-string": "1.7.4", + "port-version": 2, + "description": "Cross-platform library for GUI programming in modern C++ style.", + "homepage": "https://github.com/cnjinhao/nana", + "dependencies": [ + { + "name": "fontconfig", + "platform": "!uwp & !windows & !mingw" + }, + { + "name": "freetype", + "platform": "!uwp & !windows & !mingw" + }, + "libjpeg-turbo", + "libpng" + ] +} |
