Initial commit

This commit is contained in:
shrukan
2022-12-22 21:40:39 -08:00
commit 9f47776564
23 changed files with 11061 additions and 0 deletions

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

@ -0,0 +1,16 @@
{
"configurations": [
{
"name": "Linux",
"includePath": [
"${workspaceFolder}/**"
],
"defines": [],
"compilerPath": "/usr/bin/gcc",
"cStandard": "gnu17",
"cppStandard": "c++20",
"intelliSenseMode": "linux-gcc-x64"
}
],
"version": 4
}

33
.vscode/launch.json vendored Normal file
View File

@ -0,0 +1,33 @@
{
// 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",
"type": "cppdbg",
"request": "launch",
"program": "${workspaceFolder}/build/test/TestMain",
"args": [],
"stopAtEntry": false,
"cwd": "${fileDirname}",
"environment": [],
"externalConsole": false,
"MIMode": "gdb",
"preLaunchTask": "Make debug",
"setupCommands": [
{
"description": "Enable pretty-printing for gdb",
"text": "-enable-pretty-printing",
"ignoreFailures": true
},
{
"description": "Set Disassembly Flavor to Intel",
"text": "-gdb-set disassembly-flavor intel",
"ignoreFailures": true
}
]
}
]
}

65
.vscode/settings.json vendored Normal file
View File

@ -0,0 +1,65 @@
{
"files.associations": {
"array": "cpp",
"atomic": "cpp",
"bit": "cpp",
"*.tcc": "cpp",
"cctype": "cpp",
"chrono": "cpp",
"clocale": "cpp",
"cmath": "cpp",
"compare": "cpp",
"concepts": "cpp",
"condition_variable": "cpp",
"csignal": "cpp",
"cstdarg": "cpp",
"cstddef": "cpp",
"cstdint": "cpp",
"cstdio": "cpp",
"cstdlib": "cpp",
"cstring": "cpp",
"ctime": "cpp",
"cwchar": "cpp",
"cwctype": "cpp",
"deque": "cpp",
"map": "cpp",
"set": "cpp",
"unordered_map": "cpp",
"vector": "cpp",
"exception": "cpp",
"algorithm": "cpp",
"functional": "cpp",
"iterator": "cpp",
"memory": "cpp",
"memory_resource": "cpp",
"numeric": "cpp",
"optional": "cpp",
"random": "cpp",
"ratio": "cpp",
"string": "cpp",
"string_view": "cpp",
"system_error": "cpp",
"tuple": "cpp",
"type_traits": "cpp",
"utility": "cpp",
"fstream": "cpp",
"initializer_list": "cpp",
"iomanip": "cpp",
"iosfwd": "cpp",
"iostream": "cpp",
"istream": "cpp",
"limits": "cpp",
"mutex": "cpp",
"new": "cpp",
"numbers": "cpp",
"ostream": "cpp",
"ranges": "cpp",
"sstream": "cpp",
"stdexcept": "cpp",
"stop_token": "cpp",
"streambuf": "cpp",
"thread": "cpp",
"typeinfo": "cpp",
"semaphore": "cpp"
}
}

85
.vscode/tasks.json vendored Normal file
View File

@ -0,0 +1,85 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "Make all",
"type": "shell",
"command": "make",
"group": {
"kind": "build",
}
},
{
"label": "Make debug",
"type": "shell",
"command": "make debug",
"group": {
"kind": "build",
}
},
{
"label": "Make release",
"type": "shell",
"command": "make release",
"group": {
"kind": "build",
}
},
{
"label": "Make test",
"type": "shell",
"command": "make test",
"group": {
"kind": "test",
}
},
{
"label": "Make coverage",
"type": "shell",
"command": "make coverage",
"group": {
"kind": "test",
}
},
{
"label": "Make docs",
"type": "shell",
"command": "make docs/html",
"group": {
"kind": "build",
}
},
{
"label": "Make clean",
"type": "shell",
"command": "make clean",
"group": {
"kind": "build",
}
},
{
"label": "Make spotless",
"type": "shell",
"command": "make spotless",
"group": {
"kind": "build",
}
},
{
"label": "Make scan",
"type": "shell",
"command": "make scan-build",
"group": {
"kind": "build",
}
},
{
"label": "Make sanitize",
"type": "shell",
"command": "make sanitize",
"group": {
"kind": "build",
}
},
]
}