vscode创建C语言项目的示例

发布时间:2021-01-06 14:25:30 作者:小新
来源:亿速云 阅读:645

这篇文章主要介绍了vscode创建C语言项目的示例,具有一定借鉴价值,感兴趣的朋友可以参考下,希望大家阅读完这篇文章之后大有收获,下面让小编带着大家一起了解一下。

1、下载插件C/C++、C++ Intellisense;

2、新建一个空文件夹,从VSCode打开。 (或File-->Open Folder-->新建一个空文件夹);

3、按F5(用命令行gcc、g++;或者编写makefile文件,make;),选择C++(GDB/LLDB),生成launch.json(用来调试);

4、修改launch.json,将

"program": "enter program name, for example ${workspaceFolder}/a.out"

改为

"program": "${workspaceFolder}/ProjectName";"externalConsole": true

表示输出会在弹出的命令行。修改为false的话,会在VSCode内部terminal输出。

5、Ctrl+Shift+B, 选择tasks.json-->模板--->other,生成tasks.json(创建任务);

6、修改 tasks.json,

"command": "echo Hello"

改成

"command": "g++ -o ProjectName ProjectName.cpp"

这里的ProjectName和5中的ProjectName同名

7、对于复杂的项目,"command": "echo Hello"改成"command": "make"

8、再创建makefile文件,编辑;

9、编写Hello.cpp文件

10、按Ctrl+Shift+P, 选择 Task:Run Tasks,执行任务

11、按F5,执行

源代码如下所示:

Hello.cpp

#include <iostream>
using namespace std;
int main()
{
    cout << "Hello, world!" << endl;
    return 0;
}

launch.json

{
    // Use IntelliSense to learn about possible attributes.
    // Hover to view descriptions of existing attributes.
    // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
    "version": "0.2.0",
    "configurations": [
        {
            "name": "(gdb) Launch",
            "type": "cppdbg",
            "request": "launch",
            "program": "${workspaceFolder}/Hello",
            "args": [],
            "stopAtEntry": false,
            "cwd": "${workspaceFolder}",
            "environment": [],
            "externalConsole": true,
            "MIMode": "gdb",
            "setupCommands": [
                {
                    "description": "Enable pretty-printing for gdb",
                    "text": "-enable-pretty-printing",
                    "ignoreFailures": true
                }
            ]
        }
    ]
}

tasks.json

{
    // See https://go.microsoft.com/fwlink/?LinkId=733558
    // for the documentation about the tasks.json format
    "version": "2.0.0",
    "tasks": [
        {
            "label": "build",
            "type": "shell",
            "command": "make"
        }
    ]
}

makefile或Makefile

# objects= main.o kbd.o command.o display.o insert.osearch.o files.o utils.o 

# edit: $(objects)

#     cc-o edit $(objects)

# main.o: main.c defs.h

#     cc-c main.c

# kbd.o: kbd.c defs.h command.h

#     cc-c kbd.c

# command.o: command.c defs.h command.h

#     cc-c command.c

# display.o: display.c defs.h buffer.h

#     cc-c display.c

# insert.o: insert.c defs.h buffer.h

#     cc-c insert.c

# search.o: search.c defs.h buffer.h

#     cc-c search.c

# files.o: files.c defs.h buffer.h command.h

#     cc-c files.c

# utils.o: utils.c defs.h

#     cc-c utils.c

# clean:

#     rmedit $(objects)

edit: Hello.o

    cc-o edit $(objects)

Hello.o: Hello.c

    cc-c Hello.c

clean:

    rmedit Hello.o

感谢你能够认真阅读完这篇文章,希望小编分享的“vscode创建C语言项目的示例”这篇文章对大家有帮助,同时也希望大家多多支持亿速云,关注亿速云行业资讯频道,更多相关知识等着你来学习!

推荐阅读:
  1. sublime和vscode的对比示例
  2. vscode创建web工程的方法

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

vscode c语言 %d

上一篇:vscode运行.py文件的方法

下一篇:vscode如何断点调试

相关阅读

您好,登录后才能下订单哦!

密码登录
登录注册
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》