Hello,
I use FetchContent and can build and link the libraries I need. When I install my project, I would like to skip or control library installations.
For the following example, what is the right way to skip library and header installation of the fmt?
#
include(FetchContent)
FetchContent_Declare(fmt ...)
FetchContent_MakeAvailable(fmt)
Note: I use all the FetchContent usage in a third_party.cmake file, which I include in the main CMake file.
Thanks