After installing a package, vcppkg very helpfully displays the relevant CMake targets...
The package libwebp:x64-windows provides CMake targets:
find_package(WebP CONFIG REQUIRED)
target_link_libraries(main PRIVATE WebP::webp WebP::webpdemux WebP::libwebpmux WebP::webpdecoder)
But if you don't copy them then you may never see them again. At least I can't find them. Does anyone know how to retrieve this information for an installed package?
If you installed
libwebp
via:Then simply running it a second time will show you the usage information:
This works for all packages that show usage information in the first place.