如何在 Visual C 中安装 SDL 库 2008年?

发布于 2024-07-24 12:39:02 字数 85 浏览 3 评论 0原文

嘿,如何在 VISUAL C++ 2008 中安装 SDL 库? 我正在寻找如何安装的教程,但我发现没有什么好的:((请帮助我?,抱歉英语不好。谢谢:))

Hey, How to install SDL library in VISUAL C++ 2008? I I am looking for a tutorial how to install, but I found nothing good :(( please help me?, sorry for bad english. Thanks :))

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

烟─花易冷 2024-07-31 12:39:02

您应该查看本教程,以及开始游戏编程,了解有关一般 SDL 使用的更多信息。

You should check out this tutorial , as well as Beginning Game Programming for more info on general SDL usage.

故笙诉离歌 2024-07-31 12:39:02

将 sdl\include 添加到 VC 的 include 目录

将 sdl\lib 添加到 VC 的 lib 目录

配置属性 -> C/C++-> 一般-> 检测 64 位可移植性问题

配置属性 -> C/C++-> 代码生成-> 运行时库 -> 多线程 DLL (/MD)

配置属性 -> 链接器-> 输入-> 附加依赖项 -> SDLmain.lib SDL.lib

配置属性 -> 链接器-> 系统-> 子系统 Windows : (/SUBSYSTEM:WINDOWS)

Add sdl\include to VC's include directories

Add sdl\lib to VC's lib directories

Configuration Properties -> C/C++ -> General -> Detect 64-bit Portability Issues

Configuration Properties -> C/C++ -> Code Generation -> Runtime Library -> Multi-threaded DLL (/MD)

Configuration Properties -> Linker -> Input -> Additional Dependencies -> SDLmain.lib SDL.lib

Configuration Properties -> Linker -> System -> SubSystem Windows : (/SUBSYSTEM:WINDOWS)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文