Hello everyone,
I have 2 projects (a
game project and a
library project). In the library project I have a reference to an external library (static) which I don't want to reference in the game project (I want to make it transparent for the game project). The problem is that when I include a header file (in the game project) of the library project which includes a reference to the 3rd party static library, I get compiling errors because I'm not linking that 3rd party library in the game project.
Is there a way to get over this? Can I include the 3rd party library in my library project seamlessly? I don't have much experience in c++, any help is appreciated.
Btw, I'm using Visual Studio 2013