Use our script to build OGRE, CEGUI, FreeImage, Cg and OIS from CVS

简介:

If you don't want to make your hands dirty, I really recommend using our script to meet the requirements to build QBIC. It works great for x86 32 Bit machines running Ubunut 6.10. If you're on a Mac, you should modifiy the Cg download url for instance.

We are working with the current development/CVS version of OGRE 3D version called 'Eihort'. If you are programming on Ubuntu 6.10 you can use the attached script file (ogre_cvs.sh) to download and build OGRE with all required libraries and package dependencies. Run the script as a normal user. You will be asked for your root password at the beginning when downloading the dependency packages via apt-get. Later you'll be asked for the OGRE CVS password for the anonymous user where you can just hit enter.

The OGRE library will be installed in these places:

  • Include files in /usr/include/OGRE
  • *.so files in /usr/lib and /usr/lib/OGRE

The CEGUI library will be installed in these places:

  • Include files in /usr/include/CEGUI
  • *.so files in /usr/lib

The FreeImage library will be installed in these places:

  • Include files in /usr/include
  • *.so files in /usr/lib

The OIS library will be installed in these places:

  • Include files in /usr/include/OIS
  • *.so files in /usr/lib

The Cg library will be installed in these places:

  • Include files in /usr/include/Cg
  • *.so files in /usr/lib
目录
相关文章
|
23天前
|
缓存 架构师 算法
【Conan 入门教程 】深入理解 Conan 2.X 中的 self.source_folder
【Conan 入门教程 】深入理解 Conan 2.X 中的 self.source_folder
14 1
|
5月前
|
Android开发
[√]addr2line vscode插件
[√]addr2line vscode插件
35 0
Qt&Vtk-021-HelloWorld
Qt&Vtk-021-HelloWorld
109 0
Qt&Vtk-021-HelloWorld
|
C++ Windows
编译WINDOWS版SDL2:You should run hg revert SDL_config.h
编译WINDOWS版SDL2:You should run hg revert SDL_config.h
474 0
|
缓存 异构计算 索引
NDK OpenGL ES 3.0 开发(七):Transform Feedback
Transform Feedback(变换反馈)是在 OpenGLES3.0 渲染管线中,顶点处理阶段结束之后,图元装配和光栅化之前的一个步骤。 Transform Feedback 可以重新捕获即将装配为图元(点,线段,三角形)的顶点,然后你将它们的部分或者全部属性传递到缓存对象。 Transform Feedback 的主要作用是可以将顶点着色器的处理结果输出,并且可以有多个输出,这样可以将大量的向量或矩阵运算交给 GPU 并行处理,这是 OpenGLES 3.0 的新特性。
332 0
NDK OpenGL ES 3.0 开发(七):Transform Feedback
|
C语言
Qt Creator新安装后运行一个程序后,出现错误:Error while building/deploying project dict-qt (kit: Desktop Qt 5.10.0 MinGW 32bit) When executing step "qmake"
1、环境介绍:在windows10 Pro下,当前Qt Creator版本,如下图所示: 2、问题描述:当用Qt Creator新建一个工程后,按Ctrl + R 构建/部署时,出现问题,问题截图如下: 3、解决方案:这是由于Qt Creator打开的工程文件夹的绝对路径中存在中文字符,只需将工...
5650 0