I am building some test cases for a library. There a function is declared and used throughout the library. lib.a.
I then built up some test cases and implemented those functions, which are not declared in that library in a executable tests.exe
When I build test.exe it gives the error "Undefined reference to ....." How do I link correctly, I am using Eclipse and CppUnit. I have linked to the .a library and that .a library is building fine, I just can't link the two.