Hi there,

In my application I have 2 project (DLL_test and Main).
DLL_test generates a dll file and Main uses the dll file.
For Main to be able to use the dll file I need to add the header files of DLL_test inside Main project.
But now assume that I change the header of DLL_test then I have to go back and copy it to Main project.

Is there a way to link them together under QTcreator (windows)? So that when I change the file in DLL_test it automatically update the version in MAIN?
I think in linux I can just use static/hard binding (but im no linux expert).