Hello,
I am writing a code which parts will be reused in other projects.
The question is: what is a good practice for code sharing (like libraries -> c+h files)?
I develop now a library which I'd like to include in other project. If new stable version is available I need to recompile other project to see the changes.
Shall I use some separate folder and just change a paths in #includes, or there is some other way?
thanks for your comments!