如何构建 SDL_TTF?

发布于 2024-09-01 08:26:14 字数 112 浏览 6 评论 0原文

好的,所以我在 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 技术交流群。

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

发布评论

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

评论(3

只涨不跌 2024-09-08 08:26:14

我不确定你在哪里看的,但是 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

秋意浓 2024-09-08 08:26:14

对于 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.

素衣风尘叹 2024-09-08 08:26:14

我使用 MinGWMSYS 用于构建基于自动工具的项目,例如 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.

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