作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
根据 the set_directory_properties docs ,在目录上设置的属性应该传播到子目录:
Set a property for the current directory and subdirectories.
根据 the supported properties documentation , COMPILE_DEFINITIONS 是目录支持的属性。
鉴于此,为什么目录的 COMPILE_DEFINITIONS 不传播到以下示例中的子目录?
- CMakeLists.txt
- sub
-CMakeLists.txt
-main.cpp
根 CMakeLists.txt:
cmake_minimum_required(VERSION 2.8.11)
project(cmake_sandbox)
add_subdirectory(sub)
set_directory_properties(PROPERTIES COMPILE_DEFINITIONS SHOW_MESSAGE=1)
子 CMakeLists.txt:
add_executable(hello main.cpp)
主要.cpp:
#include <iostream>
using namespace std;
int main()
{
#define A_LOCAL_MESSAGE
#ifdef A_LOCAL_MESSAGE
#pragma message("A local message!")
#else
#pragma message("No local message!")
#endif
#ifdef SHOW_MESSAGE
#pragma message("A message!")
#else
#pragma message("No message!")
#endif
cout << "Hello, World!\n";
return 0;
}
$ cmake --version
cmake version 3.10.2
CMake suite maintained and supported by Kitware (kitware.com/cmake).
$ rm -rf build && mkdir build && cd build && cmake .. && make -j && sub/hello
-- The C compiler identification is GNU 7.4.0
-- The CXX compiler identification is GNU 7.4.0
-- Check for working C compiler: /usr/bin/cc
-- Check for working C compiler: /usr/bin/cc -- works
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Detecting C compile features
-- Detecting C compile features - done
-- Check for working CXX compiler: /usr/bin/c++
-- Check for working CXX compiler: /usr/bin/c++ -- works
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
-- Detecting CXX compile features
-- Detecting CXX compile features - done
-- Configuring done
-- Generating done
-- Build files have been written to: /home/caleb/src/cmake-sandbox/build
Scanning dependencies of target hello
[ 50%] Building CXX object sub/CMakeFiles/hello.dir/main.cpp.o
/home/caleb/src/cmake-sandbox/sub/main.cpp: In function ‘int main()’:
/home/caleb/src/cmake-sandbox/sub/main.cpp:8:36: note: #pragma message: A local message!
#pragma message("A local message!")
^
/home/caleb/src/cmake-sandbox/sub/main.cpp:16:31: note: #pragma message: No message!
#pragma message("No message!")
^
[100%] Linking CXX executable hello
[100%] Built target hello
Hello, World!
如果在根级别设置的 COMPILE_DEFINITION 已按预期传播,则第二个 pragma 输出将更改为“一条消息!”案件。为什么没有发生这种情况?
最佳答案
add_subdirectory
使 CMake 进入子目录并处理其中的 CMakeLists.txt 文件, 处理 add_subdirectory
之后的指令。
如果您想要获取这些设置,您需要在递归到子目录之前设置它们。
set_directory_properties(PROPERTIES COMPILE_DEFINITIONS SHOW_MESSAGE=1)
add_subdirectory(sub)
关于c++ - 为什么 CMake COMPILER_DEFINITIONS 不传播到子目录?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56015348/
根据 the set_directory_properties docs ,在目录上设置的属性应该传播到子目录: Set a property for the current directory an
我是一名优秀的程序员,十分优秀!