Let say that your CMake C++ project depends on some external library such has Google Benchmarks/Test.
I know that I can independently configure and install the external library so that later when building my personal project I can access its CMake file which will nicely satisfy the dependency (It will nicely add its headers and library files)
My question is:
- Is it possible to directly configure/build this external library when configuring my project bypassing installing this external library?