Search found 7 matches

by Buffy Fan
Mon Jun 20, 2011 10:34 am
Forum: Beginners Help
Topic: A question on building Irrlicht from source
Replies: 2
Views: 391

A question on building Irrlicht from source

I used this tutorial to build Irrlicht's source:
http://www.irrlicht3d.org/wiki/index.php?n=Main.InstallingIrrlicht#BuildWindows

The build was successful, but the compiler gave this warning:

Files\MSBuild\Microsoft.Cpp\v4.0\Microsoft.CppBuild.targets(990,5): warning MSB8012: TargetPath(C:\irrlicht ...
by Buffy Fan
Sat Jun 18, 2011 9:20 pm
Forum: Beginners Help
Topic: How do I tell Visual Studio 2010 where the irrlicht.lib is?
Replies: 18
Views: 3025

Google only gave me tutorials on how to build a statically linked library from scratch.

I tried to open irrlicht.dll with my IDE. But it failed and gave me a a pop-up saying "cannot enumerate resources in the executable". So fingers crossed that someone on the VS2010 forums will know how to open a ...
by Buffy Fan
Sat Jun 18, 2011 7:54 pm
Forum: Beginners Help
Topic: How do I tell Visual Studio 2010 where the irrlicht.lib is?
Replies: 18
Views: 3025

I'll compile Irrlicht as a statically linked library.

Here's how I did it:
I went to Project > Properties > Configuration Properties > C/C++ > Code Generation > Runtime Library and set it to Multi-threaded (/MT)

I hope I did it right. I'm about to test it.

Thanks for all the help everyone. :)
by Buffy Fan
Sat Jun 18, 2011 3:12 pm
Forum: Beginners Help
Topic: How do I tell Visual Studio 2010 where the irrlicht.lib is?
Replies: 18
Views: 3025

Thanks CuteAlien. I finally figured it out. :)

Project > Properties > Linker > Input is where I added irrlicht.lib

&

Project > Properties > Configuration Properties > VC++ Directories is where found the proper places to add a path to Irrlicht's include and lib folders.

When I ran my program, a ...
by Buffy Fan
Sat Jun 18, 2011 2:56 pm
Forum: Everything 2d/3d Graphics
Topic: Which one would be the best animated object format?
Replies: 2
Views: 1340

Which one would be the best animated object format?

From this list of animated objects supported by Irrlicht, which one would be the best if I'm working with Blender?

Animated objects:

B3D files (.b3d, r, skeleton)
Microsoft DirectX (.x, r) (binary & text, skeleton)
Milkshape (.ms3d, r, skeleton)
Quake 3 models (.md3, r, morph)
Quake 2 models (.md2 ...
by Buffy Fan
Sat Jun 18, 2011 10:48 am
Forum: Beginners Help
Topic: How do I tell Visual Studio 2010 where the irrlicht.lib is?
Replies: 18
Views: 3025

Here's what my IDE's documentation told me to do: http://msdn.microsoft.com/en-us/library/ba1z7822.aspx

Which I followed to the letter.

I'm in Project > Properties > Linker > Input, and added Irrlicht.lib to the list of Additional Dependencies. Sadly, my IDE still couldn't find the lib file.

I'd ...
by Buffy Fan
Sat Jun 18, 2011 2:53 am
Forum: Beginners Help
Topic: How do I tell Visual Studio 2010 where the irrlicht.lib is?
Replies: 18
Views: 3025

How do I tell Visual Studio 2010 where the irrlicht.lib is?

I tried
#pragma comment(lib, "Irrlicht.lib")
but it didn't work.

How do I tell Visual Studio 2010 Ultimate where to find Irrlicht.lib?

Any help would be much appreciated.