我该在此 github 的克隆 (https://github.com/johnBuffer/VerletSFML-Multithread) 的 cmake 设置文件中将目录设置在哪里

Where do I set the directories to in the cmake settings file in a clone of this github (https://github.com/johnBuffer/VerletSFML-Multithread)

提问人:tanner 提问时间:10/24/2023 最后编辑:Tsyvarevtanner 更新时间:10/24/2023 访问量:19

问:

我正在尝试克隆并运行github存储库。(https://github.com/johnBuffer/VerletSFML-Multithread)。它使用 sfml,所以我下载了它。在 cmake 设置中,需要设置几个目录。我将 sfml 目录设置为我下载的 sfml 文件夹。我保存并尝试运行它,但我收到一个关于找不到 sfml 配置文件的错误。我可以手动找到它说找不到的文件,所以我有点困惑。我还尝试将目录设置为包含该文件的第一个文件夹,但仍然不起作用。

还有一个 cmake 模块路径需要更改,但我不知道将其设置为什么。它是CMAKE_INSTALL_PREFIX,它被设置为克隆项目中不存在的文件。(VerletSFML-Multithread/out/install/x64-Debug,但 VerletSFML-Multithread/out 文件夹中没有任何内容)我真的不知道我在这里做什么,我是在制作游戏的,所以这一切对我来说都是新的。如果有人能帮我解决这个问题,我将不胜感激。

错误消息:

Severity    Code    Description Project File    Line    Suppression State
Error       CMake Error at C:\Users\\source\repos\VerletSFML-Multithread\CMakeLists.txt:15 (find_package):
  By not providing "FindSFML.cmake" in CMAKE_MODULE_PATH this project has
  asked CMake to find a package configuration file provided by "SFML", but
  CMake did not find one.

  Could not find a package configuration file provided by "SFML" (requested
  version 2) with any of the following names:

    SFMLConfig.cmake
    sfml-config.cmake

  Add the installation prefix of "SFML" to CMAKE_PREFIX_PATH or set
  "SFML_DIR" to a directory containing one of the above files.  If "SFML"
  provides a separate development package or SDK, be sure it has been
  installed.
CMake SFML系列

评论

0赞 Tsyvarev 10/24/2023
您的描述 - “sfml dir”,“我可以手动找到它说找不到的文件”非常模糊。您的计算机上实际拥有哪些列出的文件?该文件的绝对路径是什么?您设置的变量变量确切名称是什么?您为该变量分配了什么确切值
1赞 Tsyvarev 10/24/2023
“这是CMAKE_INSTALL_PREFIX,它被设置为克隆项目中不存在的文件。” - CMAKE_INSTALL_PREFIX表示将安装项目的目录。它不需要是目录,也不需要包含任何文件。

答: 暂无答案