|
VS2005 创建了一个WIN32的控制台程序。
加入了环境变量。引用了动态链接库。
#include "stdafx.h"
#include <osgViewer/Viewer>
#include <osgDB/ReadFile>
int _tmain(int argc, _TCHAR* argv[])
{
osgViewer::Viewer viewer;
viewer.setSceneData( osgDB::readNodeFile( "cow.osg" ));
return viewer.run();
}
编译通过。
运行时,为什么 报错。。。
报错文件在 readfile.cpp
inline osg::Node* readNodeFile(cost std::string&filename)
{
return readNodeFile(filename,Registry::instance()->getOptions());
} |
|