VS Code下cmake, c++编译,调试环境的构成步骤

1   下载必须extension
     按[Ctrl+Shift+X]打开extension窗口,选择安装"C/C++", "CMake", "CMake Tools"

2   在VSCode下打开作业目录
       [File] -> [Open Folder]

3  建立CMakefile.txt文件
    按[Ctrl+Shift+P]选择实行"CMake: Quick Start"

_images/quickstart.png

并选择合适的编译器,编译类型(execute or library)。将会在当前目录下生成CMakefile.txt文件。

  如用现成的CMakefile.txt,应该放在当前目录下。

4  编译
    按左侧cmake图标打开cmake子窗口,在此子窗口下点击build图标
    按[Ctrl+Shift+P]选择实行"CMake: build"。

5.  设定c_cpp_properties.json
     按[Ctrl+Shift+P]选择实行"C/C++:Edit Configurations (json)". 从cmake得到的include path似乎不能自动设定。需要修改c_cpp_properties.json文件中的includePath项。

5 调试
    按F9设置断点。
    按[Ctrl+Shift+D]开始实行调试。

Reference:
 CMake tool for Visual Studio Code

没有评论:

发表评论

VS Code下cmake, c++编译,调试环境的构成步骤

1   下载必须extension      按[Ctrl+Shift+X]打开extension窗口,选择安装"C/C++", "CMake", "CMake Tools" 2   在VSCode下打开作业目录 ...