afegida carpeta .vscode multisistema

This commit is contained in:
2026-03-18 23:32:11 +01:00
parent 18a6735a39
commit 2d1f4195dc
2 changed files with 57 additions and 1 deletions

1
.gitignore vendored
View File

@@ -77,7 +77,6 @@ Thumbs.db
*~
# Archivos de IDEs
.vscode/
.idea/
*.swp
*.swo

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

@@ -0,0 +1,57 @@
{
"configurations": [
{
"name": "macOS",
"includePath": [
"${workspaceFolder}/source",
"${workspaceFolder}/source/external",
"${env:HOMEBREW_PREFIX}/include",
"/opt/homebrew/include"
],
"defines": [
"MACOS_BUILD"
],
"macFrameworkPath": [
"/System/Library/Frameworks",
"/Library/Frameworks"
],
"compilerPath": "/usr/bin/clang++",
"cStandard": "c17",
"cppStandard": "c++20",
"intelliSenseMode": "macos-clang-arm64"
},
{
"name": "Linux",
"includePath": [
"${workspaceFolder}/source",
"${workspaceFolder}/source/external",
"/usr/include",
"/usr/local/include"
],
"defines": [
"LINUX_BUILD"
],
"compilerPath": "/usr/bin/g++",
"cStandard": "c17",
"cppStandard": "c++20",
"intelliSenseMode": "linux-gcc-x64"
},
{
"name": "Win32",
"includePath": [
"${workspaceFolder}/source",
"${workspaceFolder}/source/external",
"C:/mingw64/include"
],
"defines": [
"WINDOWS_BUILD",
"_WIN32"
],
"compilerPath": "C:/msys64/mingw64/bin/g++.exe",
"cStandard": "c17",
"cppStandard": "c++20",
"intelliSenseMode": "windows-gcc-x64"
}
],
"version": 4
}