You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
391 B
CMake
14 lines
391 B
CMake
8 months ago
|
find_package(Git REQUIRED)
|
||
|
include(FetchContent)
|
||
|
|
||
|
set(FETCHCONTENT_BASE_DIR "${CMAKE_CURRENT_BINARY_DIR}/third-party")
|
||
|
|
||
|
FetchContent_Declare(
|
||
|
extern_Autolog
|
||
|
PREFIX autolog
|
||
|
# If you don't have access to github, replace it with https://gitee.com/Double_V/AutoLog
|
||
|
GIT_REPOSITORY https://github.com/LDOUBLEV/AutoLog.git
|
||
|
GIT_TAG main
|
||
|
)
|
||
|
FetchContent_MakeAvailable(extern_Autolog)
|