Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CPP

Visual studio code include path not working c++

// task.json
// add this line (with your path) '"-Ipath/to/my/include/files",' to first line in "args"[]
// example:
{
  	"version": "2.0.0"
    "tasks": [
        {
          	//...
            "args": [
              	"-I${workspaceFolder}Headers",
                "-g",
                "${file}",
                "-o",
                "${fileDirname}${fileBasenameNoExtension}.exe"
            ],
          	//...
            "options": {
                "cwd": "${fileDirname}"
            },
            "problemMatcher": [
                "$gcc"
            ],
            "group": {
                "kind": "build",
                "isDefault": true
            },
            "detail": "Task generated by Debugger."
        }
    ],
}
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #Visual #studio #code #include #path #working
ADD COMMENT
Topic
Name
5+2 =