1
0

Initial commit

This commit is contained in:
2023-08-29 02:06:18 +00:00
commit 0b55bf645c
10 changed files with 527 additions and 0 deletions

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

@@ -0,0 +1,49 @@
{
"configurations": [
{
"name": "Switch",
"includePath": [
"${workspaceFolder}/**",
"${env:DEVKITPRO}/libnx/include",
"${env:DEVKITPRO}/devkitA64/aarch64-none-elf/include/**",
"${env:DEVKITPRO}/portlibs/switch/include/**"
],
"defines": [
"__SWITCH__"
],
"compilerPath": "${env:DEVKITPRO}/devkitA64/bin/aarch64-none-elf-g++",
"cStandard": "c17",
"cppStandard": "c++17",
"intelliSenseMode": "gcc-arm64"
},
{
"name": "MinGW64",
"includePath": [
"${workspaceFolder}/**",
"C:/MinGW64/include",
"C:/MinGW64/x86_64-w64-mingw32/include/**"
],
"defines": [
"USE_OPENGL"
],
"compilerPath": "D:\\msys64\\mingw64\\bin\\gcc.exe",
"cStandard": "c17",
"cppStandard": "gnu++17",
"intelliSenseMode": "windows-gcc-x64"
},
{
"name": "Linux",
"includePath": [
"${workspaceFolder}/**"
],
"defines": [
"USE_OPENGL"
],
"compilerPath": "/usr/bin/gcc",
"cStandard": "c17",
"cppStandard": "gnu++17",
"intelliSenseMode": "linux-gcc-x64"
}
],
"version": 4
}