esqueleto nivel 1

This commit is contained in:
2026-03-24 21:59:22 +01:00
parent 29e0259f34
commit 6e071575f2
41 changed files with 38668 additions and 0 deletions

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

@@ -0,0 +1,49 @@
{
"configurations": [
{
"name": "Mac",
"includePath": [
"${default}",
"${workspaceFolder}/source/**"
],
"defines": [
"_DEBUG",
"MACOS_BUILD"
],
"compilerPath": "/usr/bin/clang",
"cStandard": "c17",
"cppStandard": "c++20",
"intelliSenseMode": "macos-clang-arm64"
},
{
"name": "Linux",
"includePath": [
"${default}",
"${workspaceFolder}/source/**"
],
"defines": [
"_DEBUG",
"LINUX_BUILD"
],
"compilerPath": "/usr/bin/g++",
"cStandard": "c17",
"cppStandard": "c++20",
"intelliSenseMode": "linux-gcc-x64"
},
{
"name": "Win32",
"includePath": [
"${default}",
"${workspaceFolder}/source/**"
],
"defines": [
"_DEBUG",
"WINDOWS_BUILD"
],
"cStandard": "c17",
"cppStandard": "c++20",
"intelliSenseMode": "windows-msvc-x64"
}
],
"version": 4
}