3rd semester files
This commit is contained in:
18
3rd-Semester-Fall-2022/PDS/Homework04/.vscode/c_cpp_properties.json
vendored
Executable file
18
3rd-Semester-Fall-2022/PDS/Homework04/.vscode/c_cpp_properties.json
vendored
Executable file
@@ -0,0 +1,18 @@
|
||||
{
|
||||
"configurations": [
|
||||
{
|
||||
"name": "Linux",
|
||||
"includePath": [
|
||||
"${workspaceFolder}/**",
|
||||
"/usr/include/c++/12"
|
||||
],
|
||||
"defines": [],
|
||||
"compilerPath": "/usr/bin/gcc",
|
||||
"cStandard": "gnu17",
|
||||
"cppStandard": "c++17",
|
||||
"intelliSenseMode": "linux-gcc-x64",
|
||||
"configurationProvider": "ms-vscode.makefile-tools"
|
||||
}
|
||||
],
|
||||
"version": 4
|
||||
}
|
||||
7
3rd-Semester-Fall-2022/PDS/Homework04/.vscode/launch.json
vendored
Executable file
7
3rd-Semester-Fall-2022/PDS/Homework04/.vscode/launch.json
vendored
Executable file
@@ -0,0 +1,7 @@
|
||||
{
|
||||
// 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": []
|
||||
}
|
||||
7
3rd-Semester-Fall-2022/PDS/Homework04/.vscode/settings.json
vendored
Executable file
7
3rd-Semester-Fall-2022/PDS/Homework04/.vscode/settings.json
vendored
Executable file
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"C_Cpp.errorSquiggles": "Enabled",
|
||||
"files.associations": {
|
||||
"iostream": "cpp",
|
||||
"string": "cpp"
|
||||
}
|
||||
}
|
||||
28
3rd-Semester-Fall-2022/PDS/Homework04/.vscode/tasks.json
vendored
Executable file
28
3rd-Semester-Fall-2022/PDS/Homework04/.vscode/tasks.json
vendored
Executable file
@@ -0,0 +1,28 @@
|
||||
{
|
||||
"tasks": [
|
||||
{
|
||||
"type": "cppbuild",
|
||||
"label": "C/C++: g++ build active file",
|
||||
"command": "/usr/bin/g++",
|
||||
"args": [
|
||||
"-fdiagnostics-color=always",
|
||||
"-g",
|
||||
"${file}",
|
||||
"-o",
|
||||
"${fileDirname}/${fileBasenameNoExtension}"
|
||||
],
|
||||
"options": {
|
||||
"cwd": "${fileDirname}"
|
||||
},
|
||||
"problemMatcher": [
|
||||
"$gcc"
|
||||
],
|
||||
"group": {
|
||||
"kind": "build",
|
||||
"isDefault": true
|
||||
},
|
||||
"detail": "Task generated by Debugger."
|
||||
}
|
||||
],
|
||||
"version": "2.0.0"
|
||||
}
|
||||
Reference in New Issue
Block a user