作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想查看CMake文件中当前的一组编译器定义。自动指定的人和我添加的人会很棒。尽管文档中有说明,COMPILE_DEFINITIONS
宏似乎并未包含。
例如,在下面的设置中,消息从不包含GUI_BUILD
add_definitions( -DGUI_BUILD )
message( "COMPILE_DEFINITIONS = ${COMPILE_DEFINITIONS}" )
最佳答案
您要从directory中提取COMPILE_DEFINITIONS属性。例如。使用以下内容:
add_definitions( -DDebug )
get_directory_property( DirDefs DIRECTORY ${CMAKE_SOURCE_DIR} COMPILE_DEFINITIONS )
foreach( d ${DirDefs} )
message( STATUS "Found Define: " ${d} )
endforeach()
message( STATUS "DirDefs: " ${DirDefs} )
关于cmake - cmake add_definitions和COMPILE_DEFINITIONS,如何查看它们,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5403705/
在 CMake 文档中,我们可以阅读: add_definitions Adds flags to the compiler command line for sources in the curre
我是一名优秀的程序员,十分优秀!