Reputation: 144
I am developping a static library and I would like to be able to export the library and a part of the interfaces I use in it. Is there any tool to automate that process (other than writing a makefile by hand) ?
For exemple let's say I have a library coded in the following directory structure:
I would like to create the following structure:
Upvotes: 3
Views: 55
Reputation: 25340
You can use CMake for this. It's easy to use but really powerful. See here for documentation.
Some Pros:
Some more documentation:
Upvotes: 3