如何在 Visual Studio 2010 中使用 openAl
我已经在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在项目属性下,选择
C++ |一般
。如果您的包含语句如下所示:那么请务必在
其他包含目录
部分中包含“C:\openal-soft-1.13\include\AL”。如果您的包含语句如下所示:那么请务必在
其他包含目录
'部分中包含“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:then be sure to include "C:\openal-soft-1.13\include\AL" in the
Additional Include Directories
section. If your include statements look like: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.