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

update include structure

This commit is contained in:
2021-09-12 18:14:20 -07:00
parent 24bf3f2102
commit 5233a9ef2e
4 changed files with 437 additions and 440 deletions

10
.vscode/tasks.json vendored
View File

@@ -4,10 +4,10 @@
{
"type": "cppbuild",
"label": "Debug",
"command": "C:\\Program Files\\mingw-w64\\x86_64-8.1.0-posix-seh-rt_v6-rev0\\mingw64\\bin\\g++.exe",
"command": "g++",
"args": [
"-g",
"${workspaceFolder}\\src\\*.cpp",
"${workspaceFolder}\\src\\main.cpp",
"-o",
"${workspaceFolder}\\build\\debug\\${fileBasenameNoExtension}.exe",
"-I",
@@ -23,14 +23,13 @@
"kind": "build",
"isDefault": true
},
"detail": "compiler: \"C:\\Program Files\\mingw-w64\\x86_64-8.1.0-posix-seh-rt_v6-rev0\\mingw64\\bin\\g++.exe\""
},
{
"type": "cppbuild",
"label": "Release",
"command": "C:\\Program Files\\mingw-w64\\x86_64-8.1.0-posix-seh-rt_v6-rev0\\mingw64\\bin\\g++.exe",
"command": "g++",
"args": [
"${workspaceFolder}\\src\\*.cpp",
"${workspaceFolder}\\src\\main.cpp",
"-o",
"${workspaceFolder}\\build\\release\\${fileBasenameNoExtension}.exe",
"-I",
@@ -46,7 +45,6 @@
"kind": "build",
"isDefault": true
},
"detail": "compiler: \"C:\\Program Files\\mingw-w64\\x86_64-8.1.0-posix-seh-rt_v6-rev0\\mingw64\\bin\\g++.exe\""
}
]
}