mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-25 10:59:00 +08:00
fc722d9187
* [sentry-native] Remove vcpkg_fail_port_install. vcpkg.json and portfile.cmake don't agree, but given that vcpkg.json is more restrictive than portfile.cmake, I just deleted the call. vcpkg.json: !(arm | (arm64 & !osx) | uwp) portfile.cmake: osx | !(arm32 | arm64 | uwp) Putting `!(arm | (arm64 & !osx) | uwp)` into DNF: ``` !(arm | (arm64 & !osx) | uwp) given !arm & !(arm64 & !osx) & !uwp demorgan !arm & (!arm64 | osx) & !uwp demorgan (!arm & !uwp & !arm64) | (!arm & !uwp & osx) distribute ands over ors (!arm32 & !arm64 & !uwp) | (!arm32 & !arm64 & !uwp & osx) definition of arm (!arm32 & !arm64 & !uwp) | (!arm32 & !arm64 & osx) osx implies uwp ``` Putting `osx | !(arm32 | arm64 | uwp)` into DNF: ``` osx | !(arm32 | arm64 | uwp) given osx | (!arm32 & !arm64 & !uwp) demorgan ``` (at which point one of the conjunctions is identical and the other is just more conditions on osx) In support of https://github.com/microsoft/vcpkg/pull/21502 * DNF * add license Co-authored-by: nicole mazzuca <mazzucan@outlook.com> |
||
---|---|---|
.. | ||
fix-config-cmake.patch | ||
fix-warningC5105.patch | ||
portfile.cmake | ||
use-zlib-target.patch | ||
vcpkg.json |