aboutsummaryrefslogtreecommitdiff
path: root/ci/test/GetCMakeLogFiles.cmake
blob: 80f71dcf635697adb4d5278d0a430032cc1d9852 (plain)
1
2
3
4
5
6
7
8
9
10
11
# 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})