This commit is contained in:
Lauri Räsänen 2021-07-24 16:42:22 +03:00
commit b138a33a71
107 changed files with 10966 additions and 0 deletions

40
.vscode/c_cpp_properties.json vendored Executable file
View file

@ -0,0 +1,40 @@
{
"configurations": [
{
"name": "Win32",
"includePath": [
"${workspaceFolder}/**",
"${workspaceFolder}/third_party/include"
],
"defines": [
"_DEBUG",
"UNICODE",
"_UNICODE"
],
"windowsSdkVersion": "10.0.18362.0",
//"compilerPath": "C:/Program Files (x86)/Microsoft Visual Studio/2017/BuildTools/VC/Tools/MSVC/14.16.27023/bin/Hostx64/x64/cl.exe",
"compilerPath": "C:/msys64/mingw64/bin/gcc.exe",
"cStandard": "c99",
"cppStandard": "c++17",
"intelliSenseMode": "linux-gcc-x64"
},
{
"name": "Linux",
"includePath": [
"${workspaceFolder}/**",
"${workspaceFolder}/third_party/include",
"${workspaceFolder}/../android-ndk-r25/toolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/include/"
],
"defines": [
"_DEBUG",
"UNICODE",
"_UNICODE"
],
"compilerPath": "/usr/bin/gcc",
"cStandard": "c99",
"cppStandard": "c++17",
"intelliSenseMode": "linux-gcc-x64"
}
],
"version": 4
}

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

@ -0,0 +1,46 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "(gdb) Launch Game",
"type": "cppdbg",
"request": "launch",
"program": "${workspaceFolder}/bin/game",
"args": [],
"stopAtEntry": false,
"cwd": "${workspaceFolder}/bin",
"environment": [],
"externalConsole": false,
"MIMode": "gdb",
"setupCommands": [
{
"description": "Enable pretty-printing for gdb",
"text": "-enable-pretty-printing",
"ignoreFailures": true
}
]
},
{
"name": "(gdb) Launch ModelViewer",
"type": "cppdbg",
"request": "launch",
"program": "${workspaceFolder}/bin/modelviewer",
"args": [],
"stopAtEntry": false,
"cwd": "${workspaceFolder}/bin",
"environment": [],
"externalConsole": false,
"MIMode": "gdb",
"setupCommands": [
{
"description": "Enable pretty-printing for gdb",
"text": "-enable-pretty-printing",
"ignoreFailures": true
}
]
}
]
}

32
.vscode/settings.json vendored Executable file
View file

@ -0,0 +1,32 @@
{
"files.associations": {
"*.h": "c",
"xstring": "c",
"xutility": "c",
"*.m": "c",
"random": "c",
"array": "c",
"string": "c",
"string_view": "c",
"ranges": "c",
"regex": "c",
"optional": "c",
"istream": "c",
"ostream": "c",
"system_error": "c",
"functional": "c",
"tuple": "c",
"type_traits": "c",
"utility": "c",
"*.tcc": "c",
"typeinfo": "c",
"initializer_list": "c",
"iterator": "c",
"vector": "c"
},
"files.eol": "\n",
"C_Cpp.dimInactiveRegions": false,
"editor.detectIndentation": false,
"editor.tabSize": 8,
"editor.insertSpaces": false
}