Hello,
I was working with the SDK 17.0.2 development kit and combined a few examples. When adding dependencies from other examples the path is entirely contained within the SDK folder, but when sharing the folder with all files to another person the build fails unless the other person has the SDK folder in the same directory as me. For example:
my location: D:/SDK/../..
Their location: C:/SDK/../..
The build fails on their location as the dependencies are statically linked to my location on D and do not find the files in C. The only way we've gotten it to work so far is having their entire directory structure exactly match mine. How do I make this fully dynamic so that the above setup would work with the SDK on either C or D or in any other number of directories so that the folder can be transferred or shared within a git repo?
Thanks