This commit is contained in:
Zengtudor 2024-08-13 14:31:54 +08:00
parent 2a657bd1a9
commit e0fbed5160
4 changed files with 33 additions and 4 deletions

2
.gitignore vendored
View File

@ -1,4 +1,4 @@
/.vscode # /.vscode
/.xmake /.xmake
/build /build

3
.vscode/settings.json vendored Normal file
View File

@ -0,0 +1,3 @@
{
"cmake.ignoreCMakeListsMissing": true
}

29
.vscode/tasks.json vendored Normal file
View File

@ -0,0 +1,29 @@
{
"tasks": [
{
"type": "cppbuild",
"label": "C/C++: g++.exe 生成活动文件",
"command": "C:\\Users\\Zengt\\Documents\\mingw32\\bin\\g++.exe",
"args": [
"-fdiagnostics-color=always",
"-g",
"${file}",
"-o",
"${workspaceFolder}\\build\\tmake.exe",
"-I${workspaceFolder}\\tomlplusplus"
],
"options": {
"cwd": "${fileDirname}"
},
"problemMatcher": [
"$gcc"
],
"group": {
"kind": "build",
"isDefault": true
},
"detail": "调试器生成的任务。"
}
],
"version": "2.0.0"
}

View File

@ -1,3 +0,0 @@
target("tmake")
add_files("./src/main.cpp")
add_includedirs("./tomlplusplus")