- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我的项目大致如下所示:
├CMakeLists.txt
|
├───ExampleApp
| ├───CMakeLists.txt
| ├───header.hpp
| └───main.cpp
|
└───ExampleLibrary
├───CMakeLists.txt
├───mylib.hpp
└───mylib.cpp
add_subdirectory(ExampleLibrary)
add_subdirectory(ExampleApp)
add_library(ExampleLibrary
mylib.hpp mylib.cpp
)
add_executable(ExampleApp
header.hpp main.cpp
)
target_include_directories(ExampleApp
PRIVATE ${PROJECT_SOURCE_DIR}/ExampleLibrary
)
target_link_libraries(ExampleApp
Path/To/The/Binary/Directory
)
mylib.hpp
包括在
header.hpp
中时,由于无法找到文件
mylib.hpp
,我遇到了构建错误。但是我实际上可以在
mylib.hpp
中包含
main.cpp
,并且该项目可以构建和编译。
target_include_directories()
可同时用于
.cpp
和
.hpp
文件。
最佳答案
看来您可能没有添加正确的目录作为ExampleApp
的包含目录。 PROJECT_SOURCE_DIR
变量求值到CMake项目中上次project()
调用的目录。您尚未显示此位置,但可以使用CMake项目的根目录来确保它是正确的。尝试在${CMAKE_SOURCE_DIR}/ExampleLibrary
调用中使用target_include_directories
代替:
target_include_directories(ExampleApp
PRIVATE ${CMAKE_SOURCE_DIR}/ExampleLibrary
)
add_library()
和add_executable()
之类的调用中添加头文件。这样做只能确保它们显示在IDE中。 target_include_directories()
指定可以在其中找到 header 的目录。就您而言,听起来您应该在此处列出两个目录。 ExampleLibrary
目标链接到可执行文件,您只需在target_link_libraries()
中使用目标名称即可。无需列出二进制目录(除非您从那里链接其他库)。 ExampleApp
CMake文件可能看起来像这样:
add_executable(ExampleApp
main.cpp
)
target_include_directories(ExampleApp PRIVATE
${PROJECT_SOURCE_DIR}/ExampleLibrary
${CMAKE_CURRENT_LIST_DIR}
)
target_link_libraries(ExampleApp PRIVATE
ExampleLibrary
)
关于c++ - CMake target_include_directories不会影响头文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61828152/
我对 cmake 很陌生。我以前使用过makefile,但由于QtCreator,我被迫使用cmake。我也在努力学习glfw。我有以下 cmake 文件:- cmake_minimum_requir
我在多个地方看到在定义包含目录时使用生成器表达式的引用,因此您可以在编译和安装期间为包含定义不同的位置。例如: # Define headers for this library. PUBLIC he
与 CMake 的 target_include_directories 相关的关键字 PUBLIC、PRIVATE 和 INTERFACE 的含义是什么? 最佳答案 这些关键字用于告知何时需要您传递
在我的项目中,我尝试练习良好的 Cmake 用法,并希望将所有 include_directories() 更改为 target_include_directories()。 我的项目结构是这样的:
假设我有一个看起来像这样的项目: Project (dir) -- CMakeLists.txt -- MyLib (dir) |-- CMakeLists.txt
我有一个 CMake 项目,它构建了一个依赖于另一个静态库的静态库。我想把这个静态库变成一个 object libraries .当我这样做时,我得到一个编译器错误,我想我对对象库有一些不了解。 这是
这个问题在这里已经有了答案: What is the difference between include_directories and target_include_directories in
这是来自 make CMakeLists.txt 的片段: add_library(foo-object OBJECT src/foo.cpp) target_include_directories(
在我的 main.cpp 的顶部文件,No such file or directory被扔在 #include . 通过 g++ -I"C:\Libraries\64_bit\SQLite3\in
这是我的c++项目。 ├── CMakeLists.txt ├── include │ └── ccli └── # headers ├── src │ ├── CMakeL
我在我的项目中使用子模块 GitHub,现在我想使用 target_include_directories 将文件包含在我的项目类中 这是我的cmake配置 cmake_minimum_require
我正在编写一个 C++ 库(仅 header )并使用 CMake 生成我的 (Visual Studio) 项目和解决方案文件。我还在编写一个测试套件,它是同一个 CMake 项目的一部分。 当我在
我们的 CMakeList.txt有一个 target_include_directories潜入。它破坏了我们的低级客户端,如 Ubuntu LTS、CentOS 和 Solaris。 我知道我可以
如何强制 CMake 的功能 target_include_directories()将值视为绝对路径? 例如,我想要这行代码: target_include_directories(foobar
我有一个项目 ├── CMakeLists.txt │ ├── log │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ ├──
CMake 2.8.11 引入了 target_include_directories 和 target_compile_definitions。然而,我正在使用的一些设备有 2.8.9。而且我不想在
我的 C++ 代码有一个目录结构,如下所示: | |->include |->src 我正在为我的代码编写一个 CMakeLists.txt 文件。我想了解 CMake 中 include_direc
我正在尝试使用以下目录结构构建一个库: lib1 |-include | |-lib1 | |-public.h |-src | |-private.h | |-private.cpp | |-p
我正在使用外部文件来处理我的库,所以我不想在我的文件 C++ 中使用相对路径,但我想使用这个约定 我读到如果使用 target_include_directories 可以使用 CMake 创建它我是
使用 CMake 2.8+,您可以使用 target_include_directories() 避免冗余设置包含目录. 例如通过写作 add_libary(mylib SHARED ${SOURCE
我是一名优秀的程序员,十分优秀!