将 VCPKG 与适用于 Windows ARM64 的 cmake 和 Qt 6 一起使用
Qt 6.2 引入了 Windows on Arm 支持 (https://bugreports.qt.io/browse/QTBUG- 85820)。我尝试使用 Qt Creator 创建一个新的 cmake 项目,一切正常。然后我想使用 vcpkg 添加一些外部包到我的项目中。将 vcpkg 与 cmake 结合使用的标准方法是使用 CMAKE_TOOLCHAIN_FILE 变量(如前所述 此处。但是,当我单击 Qt Creator 中的项目设置(项目 > 构建)时,Qt Creator 似乎已经设置了CMAKE_TOOLCHAIN_FILE 变量到另一个文件
据推测,这样做是为了可以从 x64 机器交叉编译 ARM64 二进制文件但是,这使我无法在 Qt 项目中设置 vcpkg。 CMake 是否支持多个工具链文件,或者是否有适合我的场景的替代设置。 ?
Qt 6.2 introduced Windows on Arm support (https://bugreports.qt.io/browse/QTBUG-85820). I tried to create a new cmake project set up using Qt Creator and everything works fine. Then I wanted to add some external packages to my project using vcpkg. The standard way to use vcpkg with cmake is using the CMAKE_TOOLCHAIN_FILE variable (as mentioned here. However, when I clicked on project settings in Qt Creator (Projects > Build) it seems that Qt Creator has already set up the CMAKE_TOOLCHAIN_FILE variable to another file
Presumably, this is done so that it is possible to cross-compile an ARM64 binary from a x64 machine. However, this prevents me from setting up vcpkg within my Qt project. Is there a way to get around this issue? Does CMake support multiple toolchain files or is there an alternative setup for my scenario?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我发现 VCPKG 提供了一种实现此目的的方法,如下所述 此处:
因此,就我而言,我可以使用 VCPKG_CHAINLOAD_TOOLCHAIN_FILE 选项来 qt 工具链文件。
I found out that VCPKG provides a way to achieve this as explained here:
So in my case, I can just qt toolchain file using VCPKG_CHAINLOAD_TOOLCHAIN_FILE option.