Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Adding standard libraries to C++ eclipse project

Tags:

c++

eclipse

A (very) newbie C++ question: Is there a way to automatically add the standard libraries to a C++ eclipse project? I installed the CDT Main Features plugin.

like image 630
snappy Avatar asked Nov 04 '22 17:11

snappy


1 Answers

You can manually add paths to STL headers in Paths and Symbols -> Includes tab in Project Properties. This would enough for Indexer to resolve STL symbols properly.

like image 171
ks1322 Avatar answered Nov 09 '22 05:11

ks1322