CMake 找不到源文件 (add_executable)

2023-04-11C/C++开发问题
826

vpn free vpn下载 本文介绍了CMake 找不到源文件 (add_executable)的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧! 免费vpn vpn free 免费vpn下载

问题描述

我一直在尝试按照此处的供应商教程进行操作:CMake-Tutorial,请查看此处的文档:Cmake-Documentation,并尽可能通过以下来源来教育自己YouTube,但我真的很难为使用 OpenGL 设置环境.在修改了 Glitter 样板以及 open.gl 和 learnopengl.com 上的教程后,我决定了解构建过程太重要了,不能不去研究.

I have been trying to follow the vendor's tutorial here: 免费vpn CMake-Tutorial, 免费vpn下载 look over the documentation here: Cmake-Documentation, and educate myself as best as vpn下载 possible vpn free with sources on YouTube, but I am really struggling with getting the environment set up 免费vpn for working vpn free with OpenGL. Having vpn free tinkered with the Glitter boilerplate and the tutorials on vpn free open.gl vpn free and learnopengl.com, vpn下载 I've decided that understanding the build process is too important not to investigate.

在我的调查中,我遇到了 CMake 错误无法找到源文件",其详细信息如下所示.问题似乎是由add_executable"引起的.

In my investigation, I have come across the CMake error "cannot find source file" which is shown below in more detail. The problem seems to be arising from "add_executable".

这里问了一个类似的问题:CMake - 找不到文件.解决方案包括确保为每个变量正确设置了 ${PROJECT_SOURCE_DIR},我相信我已经做到了.

A similar question was asked here: CMake - Cannot find vpn下载 file. The solution involved ensuring that the ${PROJECT_SOURCE_DIR} was set properly for each variable, which I believe I have done.

我的文件结构:

+ infuriating_project
 vpn下载    + bin // post compile results
    + 免费vpn src // my humble code
    + deps // external code
 免费vpn   免费vpn     免费vpn下载  +glew
            + include
            + src
    免费vpn     +glfw
 vpn vpn下载 free     free vpn  free vpn       + include
        free vpn     + src
        +glm
        +soil
          vpn free  vpn free  + lib
 vpn下载            + src

我的 CMakeLists.txt:

My CMakeLists.txt:

cmake_minimum_required (VERSION 3.0)


# Version Information ---------------------------------------------------------
project (openGL-practice)
SET (VERSION_MAJOR 免费vpn下载 1)
SET (VERSION_MINOR 0)
SET (VERSION_FEATURE 0)
SET (VERSION_PATCH 0)
SET (VERSION "${VERSION_MAJOR}.${VERSION_MINOR}")
SET (VERSION "${VERSION}.${VERSION_FEATURE}.${VERSION_PATCH}")
MESSAGE ("Version: ${VERSION}")

# Configure Source & Binary Directories ---------------------------------------
SET (PROJECT_ROOT "${PROJECT_SOURCE_DIR}")
SET (PROJECT_SOURCE_DIR "${PROJECT_SOURCE_DIR}/src")
SET (PROJECT_BINARY_DIR "${PROJECT_BINARY_DIR}/bin")
MESSAGE ("Source path: ${PROJECT_SOURCE_DIR}")
MESSAGE 免费vpn ("Binary 免费vpn path: ${PROJECT_BINARY_DIR}")

# Configure Depenency Directories ---------------------------------------------
SET (PROJECT_DEPS "${PROJECT_ROOT}/deps")
SET (glew_inc "${PROJECT_DEPS}/glew/include/GL/")
SET 免费vpn下载 (glew_src "${PROJECT_DEPS}/glew/src/")
SET (glfw_inc "${PROJECT_DEPS}/glfw/include/GLFW/")
SET (glfw_src "${PROJECT_DEPS}/glfw/src/")
SET free vpn vpn下载 (glm "${PROJECT_DEPS}/glm/glm/")
SET (soil_lib "${PROJECT_DEPS}/lib/")
SET (soil_src "${PROJECT_DEPS}/src/")

# Include directories ---------------------------------------------------------
include_directories("
    ${PROJECT_SOURCE_DIR}
    ${PROJECT_BINARY_DIR}
 free vpn    ${glew_inc}
 免费vpn下载    ${glew_src}
   vpn free  ${glfw_inc}
    ${glfw_src}
  免费vpn   ${glm}
    ${soil_lib}
  免费vpn下载   ${soil_src}
    ${PROJECT_ROOT}
    ")

# Add executable --------------------------------------------------------------
add_executable(main main.cpp)

提供了以下错误:

CMake Error at CMakeLists.txt:46 (add_executable):
  Cannot find source file:

    vpn下载 main.cpp

  Tried extensions free vpn .c .C .c++ .cc .cpp .cxx .m .M .mm vpn下载 .h .hh .h++ .hm .hpp
  .hxx .in .txx


CMake Error: CMake can not determine linker language vpn下载 for 免费vpn target: main
CMake Error: Cannot determine link language for target "main".

非常感谢任何和所有帮助.

Any and all help would be very much appreciated.

推荐答案

有几点我想提一下.

  1. include_directories 有助于查找头文件.源文件必须始终具有完整的相对路径.

  1. include_directories helps for finding header vpn下载 files. Source files 免费vpn must always have a vpn free complete relative path.

假设你的 main.cpp 在 vpn下载 src 免费vpn 中,正确的语法是

Assuming that your main.cpp is within src, the correct syntax is

add_executable(main ${PROJECT_SOURCE_DIR}/main.cpp)

  • 包含 ${PROJECT_BINARY_DIR} 没有意义.

    覆盖像 ${PROJECT_SOURCE_DIR} 这样的 CMake 默认变量不是好的做法.以后你会永远记得你做过这样的事情,对于另一个程序员来说是很意外的.

    Overwriting CMake default variables like ${PROJECT_SOURCE_DIR} is no good practice. In future you will always remember that you have done such a thing and for another programmer it is quite unexpected.

    希望有帮助.

    这篇关于CMake 找不到源文件 vpn下载 (add_executable)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

    The End

  • 相关推荐

    无法访问 C++ std::set 中对象的非常量成员函数
    Unable to access non-const member functions of objects in C++ std::set(无法访问 C++ std::set 中对象的非常量成员函数)...
    2024-08-14 C/C++开发问题
    17

    从 lambda 构造 std::function 参数
    Constructing std::function argument from lambda(从 lambda 构造 std::function 参数)...
    2024-08-14 C/C++开发问题
    25

    STL BigInt 类实现
    STL BigInt class implementation(STL BigInt 类实现)...
    2024-08-14 C/C++开发问题
    3

    使用 std::atomic 和 std::condition_variable 同步不可靠
    Sync vpn free is unreliable using std::atomic and 免费vpn std::condition_variable(使用 std::atomic 和 std::condition_variable 同步不可靠)...
    2024-08-14 C/C++开发问题
    17

    在 STL 中将列表元素移动到末尾
    Move list element to the end in STL(在 STL 中将列表元素移动到末尾)...
    2024-08-14 C/C++开发问题
    免费vpn下载 9

    为什么禁止对存储在 STL 容器中的类重载 operator&()?
    Why is overloading operatoramp;() prohibited vpn free for vpn下载 classes stored in STL containers?(为什么禁止对存储在 STL 容器中的类重载 operatoramp;()?)...
    2024-08-14 free vpn C/C++开发问题
    免费vpn 6