Re: [CMake] Building a repo with multiple applications and install process

2019-02-06 Thread David Jobet
Hello, so I didn't get a lot of answers, here's a quick POC which only uses add_subdirectory() / include_guard() for more questions. /CMakeLists.txt /app1/CMakeLists.txt /app2/CMakeLists.txt /common/CMakeLists.txt We have app1 depending on common, and app2 depending on common. All 3 projects are

[CMake] Building a repo with multiple applications and install process

2019-02-05 Thread David Jobet
Hello, at work, we have a mono-repo with multiple applications/libs (dozens). The build phase is ok, but I'm not sure about the release process. When we release, we release one application at a time. (CMAKE_SKIP_INSTALL_ALL_DEPENDENCY is true) In order to speed up releases, we always perform an i