在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
VSCode编写C/C++项目 1. 下载插件C/C++、C++ Intellisense; 源代码如下所示: 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
|
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论