first commit, initial layout and some ideas I want to implement, included my linked list impl
This commit is contained in:
37
.vscode/tasks.json
vendored
Normal file
37
.vscode/tasks.json
vendored
Normal file
@@ -0,0 +1,37 @@
|
||||
{
|
||||
"tasks": [
|
||||
{
|
||||
"type": "cppbuild",
|
||||
"label": "C/C++: gcc-14 build active file",
|
||||
"command": "/usr/bin/gcc-14",
|
||||
"args": [
|
||||
"-fdiagnostics-color=always",
|
||||
"-g3",
|
||||
"-O0",
|
||||
"-std=c11",
|
||||
"-Wall",
|
||||
"-Wextra",
|
||||
"-Wpedantic",
|
||||
"-Wshadow",
|
||||
"-Wconversion",
|
||||
"-Wstrict-prototypes",
|
||||
"-Wmissing-prototypes",
|
||||
"-D_POSIX_C_SOURCE=200809L",
|
||||
"-Iinclude",
|
||||
"${file}",
|
||||
"-o",
|
||||
"${fileDirname}/${fileBasenameNoExtension}",
|
||||
"./build/lib/libnickel.a"
|
||||
],
|
||||
"problemMatcher": [
|
||||
"$gcc"
|
||||
],
|
||||
"group": {
|
||||
"kind": "build",
|
||||
"isDefault": true
|
||||
},
|
||||
"detail": "Task generated by Debugger."
|
||||
}
|
||||
],
|
||||
"version": "2.0.0"
|
||||
}
|
||||
Reference in New Issue
Block a user