如何构建 SDL_TTF?
好的,所以我在 Windows Vista 上,我想使用 SDL_TTF,但是制作它的白痴决定你必须从源代码构建所有内容,所以我构建 .lib 文件和所有其他东西,但我在 Windows 上,那么我该怎么做呢?
Okay, so I'm on Windows Vista, and I want to use SDL_TTF, but the idiots who made it decided you have to build everything from source, so I to build the .lib files and all that other stuff, but I'm on Windows, so how am I suppose to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我不确定你在哪里看的,但是 SDL_TTF 页面已经预编译了 win32 二进制文件,
http://www.libsdl.org/projects/SDL_ttf/ ,或更具体地说, http://www.libsdl.org/项目/SDL_ttf/release/SDL_ttf-devel-2.0.10-VC.zip
I'm not sure where you looked, but the SDL_TTF page have precompiled win32 binaries,
http://www.libsdl.org/projects/SDL_ttf/ , or more specifically, http://www.libsdl.org/projects/SDL_ttf/release/SDL_ttf-devel-2.0.10-VC.zip
对于 Windows 用户来说,坏消息是您将收到“无法解析的外部符号 _TTF_GetFontOutline”或“无法解析的外部符号 _TTF_SetFontOutline”。这两个函数均不包含在该版本的 Windows 库中。 (但是 dll 确实如此)。所以你可能需要编译它们。
Well bad news for Windows user you will get "unresolved external symbol _TTF_GetFontOutline" or "unresolved external symbol _TTF_SetFontOutline". Both function are NOT INCLUDED with the Windows lib of this version. (But the dll does). So you may need to compile them.
我使用 MinGW 和 MSYS 用于构建基于自动工具的项目,例如 SDL 及其相关库。
SDL_TTF 还在
VisualC.zip
中提供了一个 Visual Studio 项目。I've had good luck using MinGW and MSYS to build autotools-based projects like SDL and its associated libraries.
SDL_TTF also provides a Visual Studio project in
VisualC.zip
.