1
0
mirror of https://gitlab.com/lander-team/lander-cpp.git synced 2025-07-23 22:51:26 +00:00

Resolve "Implement CI/CD"

This commit is contained in:
2021-09-16 18:06:47 +00:00
parent e18a0f03f7
commit 192ebffee4
23 changed files with 136 additions and 10147 deletions

0
.vscode/.gitkeep vendored
View File

26
.vscode/tasks.json vendored
View File

@@ -9,31 +9,9 @@
"-g",
"${workspaceFolder}\\src\\main.cpp",
"-o",
"${workspaceFolder}\\build\\debug\\main.exe",
"${workspaceFolder}\\main.exe",
"-I",
"${workspaceFolder}\\include",
],
"options": {
"cwd": "${fileDirname}"
},
"problemMatcher": [
"$gcc"
],
"group": {
"kind": "build",
"isDefault": true
},
},
{
"type": "cppbuild",
"label": "Release",
"command": "g++",
"args": [
"${workspaceFolder}\\src\\main.cpp",
"-o",
"${workspaceFolder}\\build\\release\\main.exe",
"-I",
"${workspaceFolder}\\include",
"${workspaceFolder}\\include"
],
"options": {
"cwd": "${fileDirname}"