I have a C++ solution with two projects inside, one is a library, the other is an application depending on that library. When I use my library from the main projet it works fine.
I then added a graphical library that my own library depends on (SFML if that's relevent) and now my main projects spits unresolved external symbol
.
Do I have to include the graphical library in my main project's dependency? I hope not because that's why I added the layer of my own library.
How should I fix this issue?