Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Adding header files to eclipse build path for C++

I'm trying to use this: http://www.minixml.org/index.php

I'd like to get these includes to work on Eclipse for Windows.

Can anybody help me?

like image 682
Matt M Avatar asked Apr 10 '13 19:04

Matt M


1 Answers

Left-click your project and choose Properties, then go to the following section: C/C++ General, and then Paths and Symbols, then select Includes tab, in Languages list choose GNU C++ (or whichever toolchain is your current). Now you can see Add... button to the very right, click it and provide a path to the directory which contains includes, for example: D:\Libraries\MiniXML\include. Don't forget to check the Add to all configurations checkbox. That's it, we are done.

like image 184
Alexander Shukaev Avatar answered Oct 07 '22 00:10

Alexander Shukaev