2024-08-10 06:06:36 -04:00
|
|
|
# Copyright (c) 2023-present The Bitcoin Core developers
|
|
|
|
# Distributed under the MIT software license, see the accompanying
|
|
|
|
# file COPYING or https://opensource.org/license/mit/.
|
|
|
|
|
2024-09-12 14:58:14 -03:00
|
|
|
cmake_path(GET RAW_SOURCE_PATH STEM raw_source_basename)
|
|
|
|
|
2024-08-10 06:06:36 -04:00
|
|
|
file(READ ${RAW_SOURCE_PATH} hex_content HEX)
|
2024-09-12 14:58:14 -03:00
|
|
|
string(REGEX REPLACE "................" "\\0\n" formatted_bytes "${hex_content}")
|
|
|
|
string(REGEX REPLACE "[^\n][^\n]" "std::byte{0x\\0}, " formatted_bytes "${formatted_bytes}")
|
2024-08-10 06:06:36 -04:00
|
|
|
|
2024-09-12 14:58:14 -03:00
|
|
|
set(header_content
|
|
|
|
"#include <cstddef>
|
|
|
|
#include <span>
|
2024-08-10 06:06:36 -04:00
|
|
|
|
2024-09-12 14:58:14 -03:00
|
|
|
namespace ${RAW_NAMESPACE} {
|
|
|
|
inline constexpr std::byte detail_${raw_source_basename}_raw[] {
|
|
|
|
${formatted_bytes}
|
|
|
|
};
|
2024-08-10 06:06:36 -04:00
|
|
|
|
2024-09-12 14:58:14 -03:00
|
|
|
inline constexpr std::span ${raw_source_basename}{detail_${raw_source_basename}_raw};
|
|
|
|
}
|
|
|
|
")
|
|
|
|
file(WRITE ${HEADER_PATH} "${header_content}")
|