如何在 Visual C 中安装 SDL 库 2008年?
嘿,如何在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您应该查看本教程,以及开始游戏编程,了解有关一般 SDL 使用的更多信息。
You should check out this tutorial , as well as Beginning Game Programming for more info on general SDL usage.
将 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)