Open Wohlstand opened 10 months ago
Why a separate include/ directory?
Why a separate include/ directory?
In the future (next commits), I will put here public headers which will be used by user applications to use the library. Typical library projects do have a separate include and src directories to organise public headers (these will be installed into system with the linkable binary of the library) and the source code of the library itself. Private headers (used by library itself only) will remain at the src directory.
Such organising allows easily to distribute public headers (build scripts are much simpler), and allows various software to link the repo with pre-built library and include only public headers without taking of private headers by accident.
Ping?
I'm alive I just need to focus on different things that I must get done.
Ping?
I'm alive I just need to focus on different things that I must get done.
This commit adds a skeleton for the future library: adds an initial public and private headers (which is unused yet).