I'm refactoring a large platform independent c++ framework so that it's libraries and execuables no longer have to be in the same directory (or even repository) and it is proving quite challenging. The framework was currently used only by me and it should now address our whole working group so I have to keep it as modular and as automatized as possible.
My basic structure looks like this
- apps/
- app1, app2, ...
- libs/
- core, lib1, lib2, ...
- bin:
- app1, app2, libcore, liblib1, liblib2, ... (on NIX)
- app1.exe, app2.exe, core.dll, lib1.dll, lib2.dll, ... (on Windows)
Apps depend on libs, and all libs depend on the core lib. This all works fine in the same root directory and with the add_subdirectory mechanism.
Project dependencies were handeled by the order in which I was calling add_subdirectory: first libs (core being the first), then apps. Cmake was kind enough to set ${core_SOURCE_IR} to the respective directory and all binaries (libs and apps) were generated in the same directory.
What I need advice with is:
- should I move to a find_package based approach (write for each lib and FindLib.cmake file)
- how the apps and libs will find each other
- where to put the binaries
- how to pass along include directories of dependent targets
- ExternalProject_Add ?
Thank you