Project setups

This commit is contained in:
Nils O. Selåsdal
2025-07-18 21:54:13 +02:00
parent abf430dabb
commit cfe647f85d
7 changed files with 54 additions and 3 deletions
+15
View File
@@ -0,0 +1,15 @@
{
"configurations": [
{
"name": "Mac",
"includePath": [
"${default}",
"${workspaceFolder}/include"
],
"defines": [],
"compilerPath": "/usr/bin/clang",
"intelliSenseMode": "macos-clang-arm64"
}
],
"version": 4
}
+14
View File
@@ -0,0 +1,14 @@
{
"files.associations": {
"ringbuf.h": "c",
"seq.h": "c",
"stdint.h": "c",
"stdio.h": "c"
},
"C_Cpp.default.includePath": [
"/opt/homebrew/include/",
"$(workspaceFolder)/include/",
]
}
+19
View File
@@ -0,0 +1,19 @@
{
"version": "2.0.0",
"tasks": [
{
"type": "cmake",
"label": "CMake: build",
"command": "build",
"targets": [
"all"
],
"group": {
"kind": "build",
"isDefault": true
},
"problemMatcher": [],
"detail": "CMake template build task"
}
]
}