Upload Files

This commit is contained in:
phikill 2025-06-24 19:21:07 -03:00
parent d440e3e71c
commit a95b98a606
1054 changed files with 265055 additions and 0 deletions

27
.vscode/c_cpp_properties.json vendored Normal file
View file

@ -0,0 +1,27 @@
{
"version": 4,
"configurations": [
{
"name": "Linux",
"includePath": ["${workspaceFolder}/include"],
"defines": [],
"compilerPath": "/usr/bin/gcc",
"cStandard": "c89",
"intelliSenseMode": "linux-gcc-x64"
},
{
"name": "Mac",
"includePath": ["${workspaceFolder}/include"],
"compilerPath": "/usr/bin/clang",
"cStandard": "c89",
"intelliSenseMode": "macos-clang-x64"
},
{
"name": "Win",
"includePath": ["${workspaceFolder}\\include"],
"compilerPath": "C:\\Program Files\\LLVM\\bin\\clang.exe",
"cStandard": "c89",
"intelliSenseMode": "windows-clang-x64"
}
]
}

25
.vscode/launch.json vendored Normal file
View file

@ -0,0 +1,25 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "Executar no Windows",
"type": "cppvsdbg",
"request": "launch",
"program": "${workspaceFolder}/build/main.exe",
"cwd": "${workspaceFolder}",
"console": "externalTerminal",
"preLaunchTask": "build"
},
{
"name": "Executar no Linux/macOS",
"type": "cppdbg",
"request": "launch",
"program": "${workspaceFolder}/build/main",
"cwd": "${workspaceFolder}",
"MIMode": "gdb",
"stopAtEntry": false,
"console": "externalTerminal",
"preLaunchTask": "build"
}
]
}

49
.vscode/tasks.json vendored Normal file
View file

@ -0,0 +1,49 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "Build with Watcom",
"type": "shell",
"command": "wcl386",
"args": [
"-I=include",
"src/main.c",
"-fe=bin/main_watcom.exe"
],
"group": "build",
"problemMatcher": []
},
{
"label": "Build with VS2019",
"type": "shell",
"command": "cl",
"args": [
"/Iinclude",
"src\\main.c",
"/Fe:bin\\main_vs2019.exe"
],
"options": {
"env": {
"PATH": "C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\VC\\Tools\\MSVC\\14.29.30133\\bin\\Hostx64\\x64;${env:PATH}"
}
},
"group": "build"
},
{
"label": "Build with VS2022",
"type": "shell",
"command": "cl",
"args": [
"/Iinclude",
"src\\main.c",
"/Fe:bin\\main_vs2022.exe"
],
"options": {
"env": {
"PATH": "C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\VC\\Tools\\MSVC\\14.39.33519\\bin\\Hostx64\\x64;${env:PATH}"
}
},
"group": "build"
}
]
}