Re: [osg-users] [build] When writing my own software and integrating openscenegraph, LNK error is thrown out.

2016-03-23 Thread Diwas Bhattarai
Hi, Thank you very much for the solution. That's it. It solved the problem. Thank you! Cheers, Diwas -- Read this topic online here: http://forum.openscenegraph.org/viewtopic.php?p=66614#66614 ___ osg-users mailing list

Re: [osg-users] [build] When writing my own software and integrating openscenegraph, LNK error is thrown out.

2016-03-23 Thread Voerman, L.
Hi Diwas, as you don't mention it I think you did not create a x64 configuration for your project, the default new project is a 32 bit project. In visual studio in below the menus is a bar with two drop down lists, one with "Release" and one with "Win32", below the Win32 is an option called

Re: [osg-users] [build] When writing my own software and integrating openscenegraph, LNK error is thrown out.

2016-03-22 Thread Diwas Bhattarai
Hi, Here is the link to the Errors that I get. http:// pastebin. com /0Z6Zk553 Following is the code that I compile. Code: #include #include #include #include #include #include #include int main() { //create a viewer osgViewer::Viewer viewer;

[osg-users] [build] When writing my own software and integrating openscenegraph, LNK error is thrown out.

2016-03-22 Thread Diwas Bhattarai
Hi, I will explain what I did till now: 1. Donwloaded OSG and extracted on the folder OSGraph/OpenSceneGraph-3.4.0. 2. Downloaded 3rdParty folder 64bit and extracted on the folder OSGraph/3rdParty. 3.Installed Cmake and Browed to OSGraph/OpenSceneGraph-3.4.0 folder on "Where is the source

Re: [osg-users] [build] When writing my own software and integrating openscenegraph, LNK error is thrown out.

2016-03-22 Thread Sebastian Messerschmidt
Hi Diwas, Can you be a bit more specific on the Linker error you are getting? It is hard to guess what might be missing without some output and maybe some minimal code. The only thing I'm spotting is the /MDd. Have you tried /MD instead? Cheers Sebastian Hi, I will explain what I did till