导入 SDL 一次不起作用,给我这个错误:Main.cpp:2:22: fatal error: SDL2/SDL.h: No such file or directory compilation terminated [关闭]

问题描述 投票:0回答:0

我一直在尝试在我的 Windows 笔记本电脑上使用 VS 代码设置 SDL 来编写国际象棋克隆代码。下载并导出文件后,我执行了“#include ”并且在 vscode 上没有出现错误,所以我运行代码来创建一个窗口,它给了我错误。

我知道它是正确导入的,因为我得到了 SDL 函数的自动完成功能。我删除了代码并仅使用“#include”再次尝试,但仍然出现错误。

这是我的 Makefile:

all:
    g++ -I src/Include -L src/lib -o main main.cpp -lmingw32 -lSDL2main -lSDL2 

...和cpp代码:

#include <iostream>
#include <SDL2/SDL.h>
c++ visual-studio-code makefile sdl
© www.soinside.com 2019 - 2024. All rights reserved.