Initial commit

This commit is contained in:
Riley 2025-05-13 23:14:45 +00:00
commit 605a30e2f8
13 changed files with 240 additions and 0 deletions

View file

@ -0,0 +1,26 @@
{
"configurations": [
{
"name": "Win32",
"includePath": [
"${workspaceFolder}/**"
],
"defines": [
"_DEBUG",
"UNICODE",
"_UNICODE"
],
"windowsSdkVersion": "10.0.22621.0",
"compilerPath": "cl.exe",
"cStandard": "c17",
"cppStandard": "c++17",
"intelliSenseMode": "windows-msvc-x64",
"configurationProvider": "mesonbuild.mesonbuild",
"compileCommands": [
"${workspaceFolder}/build/meson-src/compile_commands.json"
],
"mergeConfigurations": true
}
],
"version": 4
}

View file

@ -0,0 +1,23 @@
{
// 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": [
{
"cwd": "${workspaceRoot}",
"type": "cppvsdbg",
"request": "launch",
"name": "Launch Program",
"program": "${workspaceFolder}/build/meson-src/main.exe",
"preLaunchTask": "build",
"logging": {
"engineLogging": true,
"trace": true,
"traceResponse": true
}
}
]
}

View file

@ -0,0 +1,3 @@
{
"C_Cpp.default.configurationProvider": "mesonbuild.mesonbuild"
}

View file

@ -0,0 +1,12 @@
// filepath: c:\Users\Riley\OneDrive\Documents\Code\C\Conan-C\.vscode\tasks.json
{
"version": "2.0.0",
"tasks": [
{
"label": "build",
"type": "shell",
"command": "${workspaceFolder}/build.bat debug",
"problemMatcher": []
}
]
}