please change the following... Options-%26gt;Directories-%26gt; ***Change the "Include Directories" path to your C++ installed path (ie) if D:\TC is your c++ installed path then change "D\TC\INCLUDE" ***Change the "Library Directories" path to your C++ installed path (ie) if D:\BC is your c++ installed path then change "D:\BC\LIB"
I think it should work
hope this helps
Cheers:)
In c++langauge during compilation it showing unable to include the libraray files.what is the solution?
You don't specify an operating system / compiler. If you are using a command line C++ compiler like GNU gcc, you will need to specify the directory your library is in with the -L directive. Ie:
gcc myFile.cpp -L/path/to/my/lib -lname_of_my_lib
Remember to not put the "lib" with the "-l" parameter.
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment