Test changes

This commit is contained in:
Edward Hennis
2021-10-04 18:24:37 -04:00
parent 5121efe1d6
commit edcb52dcf6
3 changed files with 7 additions and 12 deletions

4
.gitmodules vendored
View File

@@ -1,4 +0,0 @@
[submodule "rippled"]
path = rippled
url = https://github.com/cjcobb23/rippled.git
branch = clio

View File

@@ -21,7 +21,7 @@ endif ()
file (TO_CMAKE_PATH "${BOOST_ROOT}" BOOST_ROOT)
FIND_PACKAGE( Boost 1.75 COMPONENTS filesystem log_setup log thread system REQUIRED )
message(${Boost_LIBRARIES})
message("Boost libraries: ${Boost_LIBRARIES}")
include(FetchContent)
FetchContent_Declare(
googletest
@@ -41,8 +41,8 @@ add_library(clio)
include_directories(src)
list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/deps")
include(ExternalProject)
message(${CMAKE_CURRENT_BINARY_DIR})
message(${CMAKE_MODULE_PATH})
message("Current binary dir: ${CMAKE_CURRENT_BINARY_DIR}")
message("Module path: ${CMAKE_MODULE_PATH}")
FetchContent_Declare(rippled
GIT_REPOSITORY https://github.com/cjcobb23/rippled.git
GIT_TAG clio
@@ -52,14 +52,14 @@ target_link_libraries(clio PUBLIC xrpl_core grpc_pbufs)
add_dependencies(clio xrpl_core)
add_dependencies(clio grpc_pbufs)
get_target_property(grpc_includes grpc_pbufs INCLUDE_DIRECTORIES)
message("${grpc_includes}")
message("${proto_includes}")
message("${SOURCE_DIR}")
message("GRPC includes: ${grpc_includes}")
message("Proto includes: ${proto_includes}")
message("Source dir: ${SOURCE_DIR}")
INCLUDE_DIRECTORIES(${grpc_includes})
INCLUDE_DIRECTORIES(${SOURCE_DIR}/src)
INCLUDE_DIRECTORIES(${SOURCE_DIR}/include)
get_target_property(xrpl_core_includes xrpl_core INCLUDE_DIRECTORIES)
message("${xrpl_core_includes}")
message("XRPL core includes: ${xrpl_core_includes}")
INCLUDE_DIRECTORIES(${xrpl_core_includes})
include(cassandra)
include(Postgres)

Submodule rippled deleted from 9d558d116b