我已经尝试了几个小时,但似乎无法做到,我已经下载了扩展程序并寻求帮助,但此时一切都让我感到困惑。
我想在我的项目中包含SFML库,并且我试图为此使用Visual Studio Code编辑器,但由于某些原因它不符合要求。

当前外观的图片。
http://imgur.com/qJPlJua

我昨天也尝试了几个小时,但只是不想工作。

最佳答案

我知道这个问题大约有两年了,但是在摆弄我自己的任务来解决这个问题之后,提出了一些建议。这不应该是最好的方法,但是这对将来找到答案的任何人都应该是好的。



{
    // See https://go.microsoft.com/fwlink/?LinkId=733558
    // for the documentation about the tasks.json format
    "version": "2.0.0",
    "tasks": [
        {
            "label": "Compile",
            "type": "shell",
            "group": "build",
            "command": "g++",
            "args": [
                "${file}",
                "-o",
                "${fileBasenameNoExtension}.exe",
                "-IC:\\SFML-2.5.1\\include",
                "-LC:\\SFML-2.5.1\\lib",
                "-lsfml-graphics",
                "-lsfml-window",
                "-lsfml-system",
            ],
            "problemMatcher": [
                "$gcc"
            ]
        }
    ],
    "presentation": {
        "echo": true,
        "reveal": "always",
        "focus": false,
        "panel": "shared"
        //"showReuseMessage": true
    }
}


这应该与上述答案相同。按CTRL + SHIFT + B弹出任务提示,或在命令面板(CTRL + SHIFT + P)中查找Run task。记住要在项目的根目录中使用每个库的.dll。

希望这可以帮助。

09-04 02:47