Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我尝试使用设置调试标志
set
命令,cmake但我不确定要添加什么。有人告诉我,DEBUG=true但到目前为止,我找不到要设置的正确标志。
cmake
DEBUG=true
如果要在编译时构建用于调试(包括源信息,即-g),请使用
cmake -DCMAKE_BUILD_TYPE=Debug <path>
如果要构建发布版本,可以使用
cmake -DCMAKE_BUILD_TYPE=RelWithDebInfo <path>
或者,您可以使用 CMAKE GUI 进行此更改。对ccmake项目进行操作将产生与此类似的屏幕:
ccmake
在该字段中输入DebugCMAKE_BUILD_TYPE将允许您使用调试标志进行构建。
CMAKE_BUILD_TYPE