Closed ras0219-msft closed 2 months ago
https://learn.microsoft.com/en-us/vcpkg/users/triplets#per-port-customization
if(${PORT} MATCHES "qt5-") potentially double-expands PORT. The correct string is if(PORT MATCHES "qt5-").
if(${PORT} MATCHES "qt5-")
if(PORT MATCHES "qt5-")
https://learn.microsoft.com/en-us/vcpkg/users/triplets#per-port-customization
if(${PORT} MATCHES "qt5-")
potentially double-expands PORT. The correct string isif(PORT MATCHES "qt5-")
.