ferz
ferz

Reputation: 503

How do I connect libraries in eclipse c++

When I create new/c++ project/debug/advanced setting, what do I do next? In the include tab, I have include the path to the libraries? why is "Launch failed. binary not found" and " undefined reference to `WinMain@16' ex line 0, external location:"

Upvotes: 2

Views: 9101

Answers (1)

Tod
Tod

Reputation: 8242

Sounds like you need to add the proper library paths to your project. Right-click your project and select Properties. This will bring up the property editor. Under the C/C++ Build|Settings you use the Linker section to set up libraries. I have a screencast on unit testing but you cans skip most of the first two minutes, around 1:50 in I demonstrate the process of adding include paths, around 2:50 in I show adding library paths. So if you have a few minutes you can watch the following video.

http://www.youtube.com/watch?v=LnAuAJfMRy8

Upvotes: 3

Related Questions