In the top-level CMakeLists, line 24 :
list(APPEND CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/cmake/modules/")
Should be instead :
list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake/modules/")
With this quickfix, the current project can be now use with FetchContent or git submodules as a dependency ;)