我如何在vscode中正确使用task.json包含自定义库

时间:2020-03-12 20:35:43

标签: c++

{
    "tasks": [
        {
            "type": "shell",
            "label": "cl.exe build active file",
            "command": "cl.exe",
            "args": [
                "/Zi",
                "/EHsc",
                "/Fe:",
                "${fileDirname}\\${fileBasenameNoExtension}.exe",
                "${file}",
                "-L C:\\Users\\samwo\\Desktop\\vcpkg-2020.01\\packages\\sfml_x86-windows\\lib",
                "-I C:\\Users\\samwo\\Desktop\\vcpkg-2020.01\\packages\\sfml_x86-windows\\include"
            ]
        }
    ],
    "version": "2.0.0"
}

当我生成文件时,我得到“ SFML \ Graphics.hpp”:没有这样的文件或目录 我正在使用Visual Studio构建工具2019,请让我知道包含自定义库的正确参数。

0 个答案:

没有答案