/
githubmirror
/
bitcoin
Обзор
Документация
Войти
/
githubmirror
/
bitcoin
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
ci/test/GetCMakeLogFiles.cmake
11 строк
429 B
Hennadii Stepanov
ci: Handle log files regardless of CMake's version
07 сен 2024, 16:38
Не верифицирован
07 сен 2024, 16:38
6e5f33a
Код
Авторство
О чём код?
# Copyright (c) 2024-present The Bitcoin Core developers # Distributed under the MIT software license, see the accompanying # file COPYING or https://opensource.org/license/mit/. if(CMAKE_VERSION VERSION_GREATER_EQUAL 3.26) set(log_files "CMakeFiles/CMakeConfigureLog.yaml") else() set(log_files "CMakeFiles/CMakeOutput.log CMakeFiles/CMakeError.log") endif() execute_process(COMMAND ${CMAKE_COMMAND} -E echo ${log_files})