mirror of
https://github.com/XRPLF/rippled.git
synced 2025-11-14 08:05:50 +00:00
Per XLS-0095, we are taking steps to rename ripple(d) to xrpl(d). This change updates the CMake files and definitions therein, plus a handful of related modifications. Specifically, the compiler files are renamed from `RippleXXX.cmake` or `RippledXXX.cmake` to `XrplXXX.cmake`, and any references to `ripple` and `rippled` (with or without capital letters) are renamed to `xrpl` and `xrpld`, respectively. The name of the binary, currently `rippled`, remains unchanged and will be updated in a separate PR. This change is purely cosmetic and does not affect the functioning of the binary.
42 lines
990 B
CMake
42 lines
990 B
CMake
include(isolate_headers)
|
|
|
|
function(xrpl_add_test name)
|
|
set(target ${PROJECT_NAME}.test.${name})
|
|
|
|
file(GLOB_RECURSE sources CONFIGURE_DEPENDS
|
|
"${CMAKE_CURRENT_SOURCE_DIR}/${name}/*.cpp"
|
|
"${CMAKE_CURRENT_SOURCE_DIR}/${name}.cpp"
|
|
)
|
|
add_executable(${target} ${ARGN} ${sources})
|
|
|
|
isolate_headers(
|
|
${target}
|
|
"${CMAKE_SOURCE_DIR}"
|
|
"${CMAKE_SOURCE_DIR}/tests/${name}"
|
|
PRIVATE
|
|
)
|
|
|
|
# Make sure the test isn't optimized away in unity builds
|
|
set_target_properties(${target} PROPERTIES
|
|
UNITY_BUILD_MODE GROUP
|
|
UNITY_BUILD_BATCH_SIZE 0) # Adjust as needed
|
|
|
|
add_test(NAME ${target} COMMAND ${target})
|
|
set_tests_properties(
|
|
${target} PROPERTIES
|
|
FIXTURES_REQUIRED ${target}_fixture
|
|
)
|
|
|
|
add_test(
|
|
NAME ${target}.build
|
|
COMMAND
|
|
${CMAKE_COMMAND}
|
|
--build ${CMAKE_BINARY_DIR}
|
|
--config $<CONFIG>
|
|
--target ${target}
|
|
)
|
|
set_tests_properties(${target}.build PROPERTIES
|
|
FIXTURES_SETUP ${target}_fixture
|
|
)
|
|
endfunction()
|