This commit is contained in:
Vichingo455
2025-03-23 15:26:15 +01:00
parent cacf40b6cd
commit ad8366918e
72 changed files with 10255 additions and 2 deletions

37
.vscode/c_cpp_properties.json vendored Normal file
View File

@@ -0,0 +1,37 @@
{
"configurations": [
{
"name": "MinGW",
"includePath": [
"${workspaceFolder}/include",
"${workspaceFolder}/shared"
],
"compilerPath": "/usr/bin/i686-w64-mingw32-g++",
"cStandard": "c17",
"cppStandard": "c++11",
"intelliSenseMode": "windows-gcc-x86",
"compilerArgs": [
"-std=c++11",
"-mwindows",
"-municode",
"-s",
"-fPIE",
"-ffunction-sections",
"-fdata-sections",
"-fno-unwind-tables",
"-fno-asynchronous-unwind-tables",
"-fno-exceptions",
"-fno-rtti",
"-flto",
"-Wno-write-strings",
"-include stdafx.h"
],
"defines": [
"UNICODE",
"_UNICODE",
"_USRDLL"
]
}
],
"version": 4
}

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

@@ -0,0 +1,6 @@
{
"files.associations": {
"*.rc": "cpp",
"*.idl": "cpp"
}
}