Click here to Skip to main content
15,889,838 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
need the answer .

if anyone knows about this, tell me the details.
Posted
Comments
Sergey Alexandrovich Kryukov 24-Dec-14 0:21am    
Where "there"? Do you understand that location of a library or an object file is one thing, and the location of a header file is another? Configure the project to access the header files as well...
—SA

1 solution

Please see my comment to the question. Location of the header files and other source code files affects the compilation. This is not related to the location of the library files, because the symbols found in compilation are bound by name, which is done by a linker; this is the program which accesses library and object files. You certainly need to understand the phase of build, as well as loading. Please see:
http://en.wikipedia.org/wiki/Compiler[^],
http://en.wikipedia.org/wiki/Linker_%28computing%29[^],
http://en.wikipedia.org/wiki/Object_file[^],
http://en.wikipedia.org/wiki/Library_%28computing%29[^].

For XCode configuration, please see:
https://developer.apple.com/library/mac/documentation/DeveloperTools/Reference/XcodeBuildSettingRef/1-Build_Setting_Reference/build_setting_ref.html[^],
http://abdullahakay.blogspot.com/2012/06/how-to-add-header-search-path-in-xcode.html[^],
http://stackoverflow.com/questions/18414917/user-header-search-paths-for-xcode[^].
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900