Remove hello world crate

This commit is contained in:
Sergey Kuznetsov
2026-08-20 16:17:49 +01:00
parent 36e6dfaf62
commit 000fcf88bd
7 changed files with 0 additions and 42 deletions

View File

@@ -23,10 +23,7 @@ set_target_properties(
target_include_directories(xrpl_tests PRIVATE ${CMAKE_CURRENT_SOURCE_DIR})
target_link_libraries(xrpl_tests PRIVATE GTest::gtest GTest::gmock xrpl.libxrpl)
# Lets the wasm tests write their modules as WebAssembly text. Test-only by construction:
# the assembler lives in a crate nothing in libxrpl or xrpld links (see crates/CMakeLists).
target_link_libraries(xrpl_tests PRIVATE xrpl_wasm_testkit_cxxbridge)
target_link_libraries(xrpl_tests PRIVATE rs_hello_world_cxxbridge)
add_dependencies(xrpl_tests xrpl_crates)
# One source subdirectory per module. Network unit tests are currently not

View File

@@ -1,9 +0,0 @@
#include <gtest/gtest.h>
#include <rs_hello_world_cxxbridge/lib.h>
#include <string>
TEST(RustInteropTest, hello_world)
{
EXPECT_EQ(std::string(rs::hello_world::hello_world()), "hello_world");
}