Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is the difference between "Project References" and "Paths and Symbols -> References" in Eclipse CDT?

When opening project's Properties dialog, I see a list of reference projects under C/C++ General -> Paths and Symbols -> References. Immediately below that, there is an entry named Project References containing a similar list.

What is the difference between the lists?

like image 738
ysap Avatar asked Oct 03 '12 03:10

ysap


1 Answers

The main difference the C++ Development Environment Guide states is this:

Unlike the Eclipse Common References page, this page allows setting references to specific configurations.

So you can e.g. tell Eclipse to create the Release build of a referenced project before building the project which references it.

Read more here: C/C++ Project Properties, Paths and Symbols, Project References

like image 112
dreo Avatar answered Sep 22 '22 12:09

dreo