I want to compile my C++ files with mingw-g++ in command prompt. My C++ files have OGRE3D libraries also. How can I add these OGRE3D libaries in makefile. For example after I compile my files in command prompt I get an error like this ; OgreEntity.h :No such file or directory
|
feedback
|
|
To your g++, you should give options. Some useful options are:
For example, let's say I have written a library myself named shSGL. I have the files in C:\shSGL Then if I want to compile a file using it, I would compile it like this:
and build the executable with
See this Makefile for a real example. If you want to learn more about g++ options, just search for | |||||
|
feedback
|