提问人:iamshiv 提问时间:11/5/2023 更新时间:11/5/2023 访问量:24
Conan2 with Visual Studio 2022:如何安装 SFML
Conan2 with Visual Studio 2022: How to install SFML
问:
我正在学习如何将 Conan2 与 Visual Studio 2022 一起使用。我有一个依赖于 sfml/2.6.0 和 spdlog/1.12.0 的测试项目。这是我的 conanfile.py 文件。
class TicTacToeRecipe(ConanFile):
settings = "os", "compiler", "arch", "build_type"
requires = "sfml/2.6.0", "spdlog/1.12.0"
def generate(self):
ms = MSBuildDeps(self)
ms.generate()
我运行以下命令来安装依赖项。
conan install . --output-folder=./dependencies --build=missing -s build_type=Release -s compiler.cppstd=20
正如预期的那样,它会创建一组 .props 文件。我在 .vcxproj 文件中添加了以下行,以将 conandeps.props 导入我的 Visual Studio 项目。
Import Project="..\packages\dependencies\conandeps.props" />
但是当我尝试编译时,出现如下所示的错误。
错误 MSB4019:导入的项目“D:\Work\repo\TicTacToe\packages\dependencies\conan_minimp3.props”是 未找到。确认 Import 声明中的表达式 “conan_minimp3.props”是正确的,并且该文件存在于磁盘上。
我很好奇为什么在安装依赖项时没有创建此文件。有人可以告诉我怎么了吗?
答: 暂无答案
评论