changed things to include plog

This commit is contained in:
ZennDev1337 2024-01-22 12:05:59 +01:00
parent b018a44f10
commit 68a1618743
34 changed files with 2702 additions and 27 deletions

View file

@ -6,12 +6,13 @@
"command": "C:\\msys64\\mingw64\\bin\\g++.exe",
"args": [
"-fdiagnostics-color=always",
"-I${workspaceFolder}\\include",
"-ggdb",
"-std=c++20",
"-pedantic-errors",
"${fileDirname}/**.cpp",
"${workspaceFolder}/src/**.cpp",
"-o",
"${fileDirname}\\build\\${fileBasenameNoExtension}.exe"
"${workspaceFolder}\\build\\${fileBasenameNoExtension}.exe"
],
"options": {
"cwd": "${fileDirname}"
@ -26,13 +27,14 @@
"command": "C:\\msys64\\mingw64\\bin\\g++.exe",
"args": [
"-fdiagnostics-color=always",
"-I${workspaceFolder}\\include",
"-O2",
"-DNDEBUG",
"-std=c++20",
"-pedantic-errors",
"${fileDirname}/**.cpp",
"${workspaceFolder}/src/**.cpp",
"-o",
"${fileDirname}\\build\\${fileBasenameNoExtension}.exe"
"${workspaceFolder}\\build\\${fileBasenameNoExtension}.exe"
],
"options": {
"cwd": "${fileDirname}"