I'm working in a reasonably large c++ project (composed of some executable and libraries) and I'm struggling with some building issues. Using cmake, every time I modify the code of a library I need to: (1) build library; (2) install it and (2) re-build all of its dependecies. It means run "make clean; make" for each sub-project, which tooks a considerable time. Since the dependencies does not necessarily change, it should be enough to link the dependencies with the new (shared) library. Meanwhile I could not make it with cmake. One alternative I see is to create my own Makefile (or edit the Makefile built by cmake) to add a new target rule named, for instance, "link:", which does only link libraries and executables. Does anybody experience some similar problem? Do you know other solutions? My very best regards.
feedback
|