2024-08-10 11:06:36 +01: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 20:51:48 +02:00
|
|
|
cmake_path(GET JSON_SOURCE_PATH STEM json_source_basename)
|
|
|
|
|
2024-08-10 11:06:36 +01:00
|
|
|
file(READ ${JSON_SOURCE_PATH} hex_content HEX)
|
2024-09-12 20:51:48 +02:00
|
|
|
string(REGEX REPLACE "................" "\\0\n" formatted_bytes "${hex_content}")
|
2024-12-20 14:37:31 +01:00
|
|
|
string(REGEX REPLACE "[^\n][^\n]" "'\\\\x\\0'," formatted_bytes "${formatted_bytes}")
|
2024-08-10 11:06:36 +01:00
|
|
|
|
2024-09-12 20:51:48 +02:00
|
|
|
set(header_content
|
|
|
|
"#include <string_view>
|
2024-08-10 11:06:36 +01:00
|
|
|
|
2024-09-12 20:51:48 +02:00
|
|
|
namespace json_tests {
|
|
|
|
inline constexpr char detail_${json_source_basename}_bytes[] {
|
|
|
|
${formatted_bytes}
|
|
|
|
};
|
2024-08-10 11:06:36 +01:00
|
|
|
|
2024-09-12 20:51:48 +02:00
|
|
|
inline constexpr std::string_view ${json_source_basename}{std::begin(detail_${json_source_basename}_bytes), std::end(detail_${json_source_basename}_bytes)};
|
|
|
|
}
|
|
|
|
")
|
|
|
|
file(WRITE ${HEADER_PATH} "${header_content}")
|