vcpkg/ports/kaitai-struct-cpp-stl-runtime/vcpkg.json
JoergAtGithub 28f2ea5858
[kaitai-struct-cpp-stl-runtime] Added kaitai-struct-cpp-stl-runtime (#28799)
* Added new port kaitai-struct-cpp-stl-runtime

* Disable staticcrt triplets

* Made build with libiconv a default feature, to match the option in library's CMakelists.txt
2023-01-08 22:06:03 -08:00

32 lines
785 B
JSON

{
"name": "kaitai-struct-cpp-stl-runtime",
"version": "0.10",
"description": "Kaitai Struct is a declarative language used for describe various binary data structures, laid out in files or in memory. This library implements Kaitai Struct API for C++ using STL",
"homepage": "http://kaitai.io/",
"documentation": "https://doc.kaitai.io/lang_cpp_stl.html",
"license": "MIT",
"supports": "!staticcrt",
"dependencies": [
{
"name": "vcpkg-cmake",
"host": true
},
{
"name": "vcpkg-cmake-config",
"host": true
},
"zlib"
],
"default-features": [
"iconv"
],
"features": {
"iconv": {
"description": "Set the way strings have to be encoded to ICONV",
"dependencies": [
"libiconv"
]
}
}
}