|
本人刚刚接触osg,遇到了一个问题,希望大神们能够提供帮助
程序如下:
main.cpp
#pragma comment(lib,"osgViewerd.lib")
#pragma comment(lib,"OpenThreadsd.lib")
#else
#pragma comment(lib,"osg.lib")
#pragma comment(lib,"osgDB.lib")
#pragma comment(lib,"osgViewer.lib")
#pragma comment(lib,"OpenThreads.lib")
#endif
#include<osgViewer/Viewer>
#include<osgDB/ReadFile>
int main()
{
osgViewer::Viewer viewer;
osg::Node * node = new osg::Node;
node = osgDB::readNodeFile("cow.osg");
viewer.setSceneData(node);
return viewer.run();
}
运行时,出错,日志中显示错误信息为““E:\postgraduate\OSG\bin\osg80-osgd.dll”的激活上下文生成失败。 找不到从属程序集 Microsoft.VC90.DebugCRT,processorArchitecture="x86",publicKeyToken="1fc8b3b9a1e18e3b",type="win32",version="9.0.21022.8"。 请使用 sxstrace.exe 进行详细诊断。”
vs2012配置环境:
“VC++目录”,在包含目录添加:E:\postgraduate\OSG\include; 在库目录添加:E:\postgraduate\OSG\lib;
设置环境变量
path:E:\postgraduate\OSG\bin;
OSG_FILE_PATH:E:\postgraduate\OSG\data
本人在使用命令行进行运行cow.osg时,可以正常显示。
急求各位大神路过解答
|
|