With the following project structure
CMakeLists.txt
libs\CMakeLists.txt
I've got a following use case: The CMakeLists.txt describes the build process of MyLib library. The libs\CMakeLists.txt describes the build process of libraries used by MyLib. It is used by main project with add_subdirectory().
I can control if MyLib will be a shared or static library with:
cmake -DBUILD_SHARED=TRUE|FALSE
All libs used by MyLib should be linked statically (MyLib should be a "standalone" library). But I do not want to make them static explicitly in libs\CMakeLists.txt
using add_library(... STATIC ...)
as they can be used in other project as shared ones.
Can I control how my add_subdirectory(project) will be build?
You can use an option: