I already wrote a plugin to do exactly what you need: Indexer.
It provides painless automatic tags generation for the whole project(s) and keeps tags up-to-date. You can use it independently or as an add-on for another plugin project.tar.gz.
In the first way, you can declare your projects in ~/.indexer_files like this:
[CoolProject]
/home/user/cool_project
[AnotherProject]
option:ctags_params = "--languages=c++"
/home/user/another_project/src
/home/user/another_project/lib
And then, when you open any file from /home/user/cool_project , all this project will be indexed by ctags. Tags is generated in background, so, you do not have to wait while ctags generates tags. When you open tags from another project, tags is generated for it too. Tags from different projects is never mixed. When you save file from project, tags is silently updated. You do not have to care about it, it just works.