Re: [CMake] Combining several static libraries into a single static library

2014-08-06 Thread David Cole via CMake
Seems like your best bet using CMake would be to use OBJECT libraries for your Project01 through Project99 -- and then use STATIC libraries for your ReleaseLibraries, which combine the objects of the appropriate project libraries... You may need to use dummy source files for the static libs, d

[CMake] Combining several static libraries into a single static library

2014-08-06 Thread Johan Laneau
Hi, I am in the process of deploying CMake into the build process of our department. I got already quite a lot of it working but I get stuck at one point: I can't see how we can combine several static libraries into a single static library with CMake. I'll give some background first, to help y