Hello
I am using toml11 in our CMake setup like this:
FetchContent_Declare(toml
GIT_REPOSITORY https://github.com/ToruNiina/toml11.git
GIT_TAG v4.0.3
GIT_SHALLOW ON
GIT_PROGRESS ON
FIND_PACKAGE_ARGS 4.0.3)
And then later when I need it I FetchContent_MakeAvailable(toml).
When doing so, it takes a comparably long time to clone the submodules:
Can I disable this somehow? I really don't need to run the toml11 tests locally.
best regards
Johannes