first commit

This commit is contained in:
2024-06-09 12:16:18 +02:00
commit 75cd769681
7 changed files with 376 additions and 0 deletions

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

@@ -0,0 +1,13 @@
{
"configurations": [
{
"name": "Linux",
"cppStandard": "c++20",
"includePath": [
"include"
],
"compileCommands": ".vscode/compile_commands.json"
}
],
"version": 4
}

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

@@ -0,0 +1,15 @@
{
// 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": [
{
"type": "xmake",
"request": "launch",
"name": "Debug",
"target": "Blitz2",
"cwd": "${workspaceFolder}",
}
]
}