tags:

views:

15

answers:

1

Hi, I am having a project that is stored in E:/Code/GCS/utilities.I have some libraries also in utilities folder.Is there any way i can do some sort of settings that if i transfer this project on some other machine the compiler automatically find out the header/source files and libraries path.Please help me out?

+1  A: 

Yes, just use relative paths in the include paths in the project settings. The include paths should be relative to the project file. Your headers, sources and libs are already stored with relative paths within the project file so you don't have to worry about those.

Hope this helps.

Regards,

Sebastiaan

Sebastiaan Megens