mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-26 08:19:08 +08:00
a84adb4e56
vcpkg.json and portfile.cmake disagreed. ``` vcpkg.json: !osx & !uwp & (linux | !static) portfile.cmake: !osx & !uwp & (!windows | !(static | staticcrt)) ``` Trying to get portfile.cmake to agree: ``` !osx & !uwp & (!windows | !(static | staticcrt)) given !osx & !uwp & (!windows | (!static & !staticcrt)) demorgan ``` Considering !osx is earlier, I'm assuming Linux and !Windows are equivalent here: ``` !osx & !uwp & (linux | (!static & !staticcrt)) (above) ``` I'm assuming that portfile.cmake just never considered staticrt and linux, so I'm adding that condition. In support of https://github.com/microsoft/vcpkg/pull/21502
9 lines
263 B
JSON
9 lines
263 B
JSON
{
|
|
"name": "chakracore",
|
|
"version-date": "2021-04-22",
|
|
"port-version": 2,
|
|
"description": "Core part of the Chakra Javascript engine",
|
|
"homepage": "https://github.com/Microsoft/ChakraCore",
|
|
"supports": "!osx & !uwp & (linux | (!static & !staticcrt))"
|
|
}
|