mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-12-05 04:19:17 +08:00
4f9d25a7f2
microsoft/vcpkg#29196 introduced new feature flag `[tools]` which prevents generation of `libicutu`. The PR in question did not take into account dynamic linkage target where rpath is set to hardcoded and no longer valid list of libraries. This PR dynamically detects presence of `[tools]` feature and adds `libicutu` for rpath fix as necessary. Co-authored-by: Monica <v-liumonica@microsoft.com>
24 lines
426 B
JSON
24 lines
426 B
JSON
{
|
|
"name": "icu",
|
|
"version": "72.1",
|
|
"port-version": 4,
|
|
"description": "Mature and widely used Unicode and localization library.",
|
|
"homepage": "https://icu.unicode.org/home",
|
|
"license": "ICU",
|
|
"supports": "!uwp",
|
|
"dependencies": [
|
|
{
|
|
"name": "icu",
|
|
"host": true,
|
|
"features": [
|
|
"tools"
|
|
]
|
|
}
|
|
],
|
|
"features": {
|
|
"tools": {
|
|
"description": "Build tools"
|
|
}
|
|
}
|
|
}
|