auto-log.cmake 406 字节
Newer Older
1 2 3 4 5 6 7 8 9 10
find_package(Git REQUIRED)
message("${CMAKE_BUILD_TYPE}")

set(AUTOLOG_REPOSITORY     https://github.com/LDOUBLEV/AutoLog.git)
SET(AUTOLOG_INSTALL_DIR   ${CMAKE_CURRENT_BINARY_DIR}/install/Autolog)

ExternalProject_Add(
    extern_Autolog
    PREFIX autolog
    GIT_REPOSITORY ${AUTOLOG_REPOSITORY}
P
Peihan 已提交
11
    GIT_TAG main
12 13 14
    DOWNLOAD_NO_EXTRACT True
    INSTALL_COMMAND cmake -E echo "Skipping install step."
)