I've set up a workspace with 3 projects, 1 exe and 2 libs. The exe depends on the libs.
The libs apparently build properly into their respective project folders but the exe project fails link against them.
I've added the lib project directories to the Project Options > Folders > Libraries list (on the exe project properties)
I've also added the names of the LIB files on the Linker tab (also on the exe project properties)
I've added the two library projects to Project > Workspace > Project Dependencies
When I build the exe project I see it building the libs. And I can see the libs in their folders, but the linker fails while linking the exe:
POLINK: error: Unresolved external symbol '_open_bin_input'.
... and so on for each function defined in the lib...
What am I missing?