I have one C++ solution in my Visual Studio 2013. The solution contains 2 projects. One is a Game Engine project, the other is a Game project.
The default project which launches is Game (it is .exe), the project depends on Game Engine project(Which is only .lib the Game project uses).
The problem is, the GameEngine project uses always the $(ProjectDir) or working directory of Game, which I do not want. Even if it says in properties it will use the path to GameEngine folder, it eventually wont.
I want the GameEngine project code to use working directory of GameEngine project file (When I load files or Images from it`s folders).
Please can you help me with this issue?