我四处搜寻,找不到任何与我的问题有关的东西。
#include "Ogre\ExampleApplication.h"
class Example1 : public ExampleApplication
{
public:
void createScene()
{
}
};
int main(void)
{
Example1 app;
app.go();
return 0;
}
我采取的步骤:
- 将 ...\OgreSDK_vc10_v1-7-4\include 添加到我的项目的包含路径中。
- 将 ...\OgreSDK_vc10_v1-7-4\boost_1_42 添加到我的项目的包含路径中。
- 添加 ...\OgreSDK_vc10_v1-7-4\boost_1_42\lib 到我的库路径。
- 添加 ...\OgreSDK_vc10_v1-7-4\lib\debug 到我的库路径。
- 链接 OgreMain_d.lib 和 OIS_d.lib
我也尝试过 Ogre 网站教你的方式。但我得到同样的错误。使用 Visual Studio 2010。