最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

c++ - Setting CXX flags based on make target in cmake - Stack Overflow

programmeradmin2浏览0评论

I'm trying to add a make target in cmake so that when I build with make debug then all the parts of my code wrapped in #ifdef DEBUG will run otherwise just running make then those parts won't run. Currently I have this in my cmakelists.txt but it either always has debug enabled or never has debug enabled

add_custom_target( debug COMMAND ${CMAKE_COMMAND} -DCMAKE_BUILD_TYPE=Debug COMMAND ${CMAKE_COMMAND} --build . )

target_compile_options(my_target PRIVATE $<$CONFIG:Debug:-g -DDEBUG> $<$CONFIG:Release:-O2> )

I have tried this an a couple other ways to tackle the problem. Ideally I would just like to add the custom debug target that sets -DDEBUG in the build.

I'm trying to add a make target in cmake so that when I build with make debug then all the parts of my code wrapped in #ifdef DEBUG will run otherwise just running make then those parts won't run. Currently I have this in my cmakelists.txt but it either always has debug enabled or never has debug enabled

add_custom_target( debug COMMAND ${CMAKE_COMMAND} -DCMAKE_BUILD_TYPE=Debug COMMAND ${CMAKE_COMMAND} --build . )

target_compile_options(my_target PRIVATE $<$CONFIG:Debug:-g -DDEBUG> $<$CONFIG:Release:-O2> )

I have tried this an a couple other ways to tackle the problem. Ideally I would just like to add the custom debug target that sets -DDEBUG in the build.

Share Improve this question asked Apr 1 at 6:55 Zachary EllisZachary Ellis 311 silver badge1 bronze badge New contributor Zachary Ellis is a new contributor to this site. Take care in asking for clarification, commenting, and answering. Check out our Code of Conduct. 1
  • What isn't working for you? Getting any errors? If yes, please post the complete error message. – kiner_shah Commented Apr 1 at 6:58
Add a comment  | 

1 Answer 1

Reset to default 0

You cannot do this with the Makefile generator, it decides on compile flags at generation time.

Consider using the "Ninja Multi-Config" generator instead, which allows you to choose:

cmake --build build --config Debug

or

ninja -f build/build-Debug.cmake

There is also a Release and a RelWithDebInfo config, by default.

发布评论

评论列表(0)

  1. 暂无评论