mirror of
https://github.com/microsoft/vcpkg.git
synced 2025-06-07 01:23:35 +08:00
[vcpkg] Fix spec instance name (#10660)
* [vcpkg] Fix spec instance name * Change cub version for testing the changes * Add vulkan-hpp to test
This commit is contained in:
parent
e1fc03c474
commit
8782b0b8b9
@ -1,4 +1,4 @@
|
|||||||
Source: cub
|
Source: cub
|
||||||
Version: 1.8.0
|
Version: 1.8.0-1
|
||||||
Description: CUB is a flexible library of cooperative threadblock primitives and other utilities for CUDA kernel programming
|
Description: CUB is a flexible library of cooperative threadblock primitives and other utilities for CUDA kernel programming
|
||||||
Build-Depends: cuda
|
Build-Depends: cuda
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
Source: vulkan-hpp
|
Source: vulkan-hpp
|
||||||
Version: 2019-05-11
|
Version: 2019-05-11-1
|
||||||
Description: Header only C++ bindings for the Vulkan C API
|
Description: Header only C++ bindings for the Vulkan C API
|
||||||
Build-Depends: vulkan
|
Build-Depends: vulkan
|
||||||
|
@ -831,7 +831,7 @@ namespace vcpkg::Build
|
|||||||
{
|
{
|
||||||
for (const FeatureSpec& fspec : kv.second)
|
for (const FeatureSpec& fspec : kv.second)
|
||||||
{
|
{
|
||||||
if (!(status_db.is_installed(fspec) || spec.name() == name))
|
if (!(status_db.is_installed(fspec) || fspec.name() == name))
|
||||||
{
|
{
|
||||||
missing_fspecs.emplace_back(fspec);
|
missing_fspecs.emplace_back(fspec);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user