如何 select 在 Visual Studio 中的不同 vcpkg 库之间
How to select between different vcpkg libraries in Visual Studio
我已经通过 vcpkg 安装了 tesseract:x64-windows
和 tesseract:x64-windows-static
。在我的 Visual Studio 项目中,我可以 #include <tesseract/baseapi.h>
并且它会自动编译,但我不知道链接的是库的静态版本还是动态版本,我也不知道如何在它们之间切换。什么设置可以让我看到/改变它?
对于 VS 集成,您可以尝试 PR https://github.com/microsoft/vcpkg/pull/4361 或根据以下内容设置 MSBuild 属性 VcpkgTriplet
:
https://github.com/microsoft/vcpkg/blob/master/docs/users/integration.md(文件末尾)
我已经通过 vcpkg 安装了 tesseract:x64-windows
和 tesseract:x64-windows-static
。在我的 Visual Studio 项目中,我可以 #include <tesseract/baseapi.h>
并且它会自动编译,但我不知道链接的是库的静态版本还是动态版本,我也不知道如何在它们之间切换。什么设置可以让我看到/改变它?
对于 VS 集成,您可以尝试 PR https://github.com/microsoft/vcpkg/pull/4361 或根据以下内容设置 MSBuild 属性 VcpkgTriplet
:
https://github.com/microsoft/vcpkg/blob/master/docs/users/integration.md(文件末尾)