开罗 + openGL +过剩+ VS 2010 +视窗7
我很沮丧:) 那么有人可以帮助并编写分步手册,如何安装“cairo”、“glut”并在 Windows 7 上的 VS 2010 项目(C++)中使用它吗?
PS:最有趣的事情是我在 Linux 上毫无问题地做到了这一点。
I'm pretty dump :) So could anybody help and write step-by-step manual, how to install "cairo", "glut" and use it in VS 2010 project (C++) on Windows 7?
PS: the most fun thing that i managed to do that without any problem in Linux.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不知道 cairo,但设置 GLUT 相当简单。
unpack-dir/freeglut-xxx/VisualStudio2008
这应该创建一个同名的 DLL 文件和 lib 文件。现在,如果您想创建一个使用 GLUT 的新项目,只需正确配置该项目:
如果您遵循此设置,您应该能够在代码中使用 GLUT (
#include
),并且它应该可以很好地编译。不确定如何添加 cairo,但这可能是一个非常相似的过程。I don't know cairo, but setting up GLUT is rather straightforward.
unpack-dir/freeglut-x.x.x/VisualStudio2008
This should create a DLL file and a lib file with the same name. Now if you want to create a new project that uses GLUT, just configure the project correctly:
If you follow this setup, you should be able to use GLUT (
#include <GL/glut.h>
) in your code and it should compile nicely. Not sure how you can also add cairo, but it will probably be a very similar process.