如何在 Visual Studio 2010 中使用 openAl

发布于 2024-12-24 16:03:16 字数 119 浏览 0 评论 0原文

我已经在 C:/ 中安装了 openAl,并遵循了大量教程如何使其工作。它无法识别 openAl 中的 al.h、alu.h、alut.h 和其他组件。我不知道该怎么办。有人可以帮助我吗?

谢谢你, 亚历克斯

I have installed openAl in C:/ and followed a lots of tutorials how to make it work. It doesn't recognize al.h, alu.h, alut.h and others components from openAl. I don't know what to do. Can somebody help me?

Thank you,
Alex

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

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

发布评论

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

评论(1

墟烟 2024-12-31 16:03:16

在项目属性下,选择 C++ |一般。如果您的包含语句如下所示:

#include "al.h"

那么请务必在其他包含目录部分中包含“C:\openal-soft-1.13\include\AL”。如果您的包含语句如下所示:

#include "AL/al.h"

那么请务必在其他包含目录'部分中包含“C:\openal-soft-1.13\include”。

我假设您的 openAL 代码位于“C:\openal-soft-1.13”中。如果没有,请将其替换为它实际所在的位置。

Under your project properties, choose C++ | General. If your include statements look like:

#include "al.h"

then be sure to include "C:\openal-soft-1.13\include\AL" in the Additional Include Directories section. If your include statements look like:

#include "AL/al.h"

then be sure to include "C:\openal-soft-1.13\include" in the Additional Include Directories’ section.

I'm assuming that your openAL code resides in "C:\openal-soft-1.13". If not, replace that with where it actually resides.

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