daixtrose / cmake_utilities

CMake utilities addressing configuration management and dependency hell mitigation
MIT License
7 stars 1 forks source link

WIP: add FetchContent-based RepoMan implementation #3

Closed cpp-entwickler-de closed 1 year ago

daixtrose commented 1 year ago

Decision: Usage of the following pattern will be supported

include(FetchContent)

FetchContent_Declare(
  cmake_utilities
  GIT_REPOSITORY https://github.com/daixtrose/cmake_utilities
  GIT_TAG        main
)

FetchContent_MakeAvailable(cmake_utilities)
cpp-entwickler-de commented 1 year ago

New version uploaded. I addressed all comments, but did not have time for thorough testing.