gpt4 book ai didi

c++ - 如何在 Visual Studio 2019 中使用 cmake 项目进行 "Edit and Continue"构建?

转载 作者:行者123 更新时间:2023-12-02 00:38:05 27 4
gpt4 key购买 nike

我想在我的 Visual studio cmake C++ 项目中执行“编辑并继续”。我知道我必须将/Zi 更改为/ZI,但是在哪里?

这是C++

最佳答案

我在 Microsoft 文档 here 中找到了答案:

if(MSVC)
target_compile_options(<target> PUBLIC "/ZI")
target_link_options(<target> PUBLIC "/INCREMENTAL")
endif()

此外,您可能希望在全局范围内执行此操作,例如:

# if you what to use MSVC Edit And Continue (uncomment below, reconfigure)
# And go to Debug->Options->Debugging->General and on right panel
# set check to Enable Edit and Continue
if(MSVC)
add_compile_options("/ZI")
add_link_options("/INCREMENTAL")
endif()

关于c++ - 如何在 Visual Studio 2019 中使用 cmake 项目进行 "Edit and Continue"构建?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55190247/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com