macOS Ventura 上的 SDL2 库

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

我已经使用以下命令安装了 SDL:

brew install sdl2

但是,我不知道要在我的.c 文件中包含什么。谁能帮帮我?

我试着

#include <SDL.h>
,
<SDL2.h>
,
<SDL/SDL2.h>
,
<SDL/SDL2_main.h>
并用命令编译:

gcc `sdl-config --cflags --libs` -o main.x main.c
c macos sdl-2
© www.soinside.com 2019 - 2024. All rights reserved.