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.

link|improve this question
why you do "make clean"? – Sergey Dec 26 '11 at 21:20
because if I only execute "make" in the library dependencies the compiler check the executable timestamp and assume that it is up to date and does not link the library, thus I force it with "make clean", am I wrong? – Emanuel Vianna Dec 26 '11 at 21:31
confirmed, if I do not execute "make clean" before, when I execute "make" it does no link the new library to the executables – Emanuel Vianna Dec 27 '11 at 0:21
2  
Try "export"ing and "import"ing the library target between your projects: vtk.org/Wiki/CMake/Tutorials/Exporting_and_Importing_Targets – John Zwinck Dec 27 '11 at 1:27
it seems very promising (testing..) – Emanuel Vianna Dec 27 '11 at 2:13
show 2 more comments
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.