Author Topic: Includes, libraries  (Read 3438 times)

gatu

  • Guest
Includes, libraries
« on: November 30, 2006, 03:02:24 pm »
Hi,
I would like to compile a project using some no-standard libraries. How can I indicate to the programme that these libraries, includes exist???
Thank you

Offline dje

  • Lives here!
  • ****
  • Posts: 683
Re: Includes, libraries
« Reply #1 on: November 30, 2006, 03:39:28 pm »
Hi !

You can set it for your global environment or just for your project.
For global environment :
- Settings/Compiler and debugger
- In the Global compiler settings, select the directories tab
- Add the required paths for compiler and linker.

For your project :
- Right click on the project then select "Build options"
- Select the directories tab
- Add the required paths for compiler and linker.
- Add your specific library in the linker tab.
- Pay attention to project settings and target settings.

Dje