Search found 7 matches

by NasaGuru
Sun Mar 15, 2009 5:26 am
Forum: Beginners Help
Topic: Using irrlicht in command prompt
Replies: 14
Views: 767

Learn to use your compiler, or use one that others actualy use. I suggest you use Microsoft Visual C++ Express. It is free, is easy to use, has an excellent debugger, and will build Irrlicht without problems. Travis Yes it's free and easy and doesn't work with Vista Home Premium because of the &quo...
by NasaGuru
Sat Mar 14, 2009 11:48 pm
Forum: Beginners Help
Topic: Using irrlicht in command prompt
Replies: 14
Views: 767

According to this you need to add -w-inl or something similar to your command line to disable that warning, or perhaps it's because you have a bcc32.cfg that already contains -w and you need to remove that line, or set the maximum number of warnings. Should all be in the docs anyway. Nope still giv...
by NasaGuru
Sat Mar 14, 2009 7:27 pm
Forum: Beginners Help
Topic: Using irrlicht in command prompt
Replies: 14
Views: 767

Allright now when I try that once i type bcc32 -IC:\irrlicht-1.5\include main.cpp It prints out functions containing for are not expanded inline or functions containing while are not expanded inline for each .h file... All of these are warnings. But after a while the console just says "too many...
by NasaGuru
Sat Mar 14, 2009 3:05 pm
Forum: Beginners Help
Topic: Using irrlicht in command prompt
Replies: 14
Views: 767

I tried that:

Code: Select all

C:\Users\unknown>bcc32 -LC:\irrlicht-1.5\include
Error E2236: No file names given
I tried appending \*.h to it but it still tells me that.
by NasaGuru
Sat Mar 14, 2009 5:11 am
Forum: Beginners Help
Topic: Using irrlicht in command prompt
Replies: 14
Views: 767

No it's still giving me issues
when I type "bcc32 -I c:\irrlicht-1.5\include"
it tells me it can't find file "include.cpp" 0.o
Any other ideas?
by NasaGuru
Sat Mar 14, 2009 4:30 am
Forum: Beginners Help
Topic: Using irrlicht in command prompt
Replies: 14
Views: 767

Using irrlicht in command prompt

Hey guys. I have forsaken all IDE's for the Command Prompt (I am using Borland compiler). I have a file called main.cpp which has this: #include <irrlicht.h> #include <iostream.h> using namespace std; void main() { cout << "Yo"; } I edited the Path in Environment Variables and added this: ...
by NasaGuru
Tue Mar 10, 2009 9:30 pm
Forum: Open Discussion and Dev Announcements
Topic: 3d robotic arm project
Replies: 3
Views: 916

3d robotic arm project

All right, bear with me here as I try to explain this: Friend and I had an idea of giving NASA coding interns a challenge by having them program a virtual 3D robotic arm to move. This means that I give them the code that just draws the arm in a 3D environment, along with info on how to code movement...