mirror of
https://github.com/XRPLF/clio.git
synced 2025-11-19 19:25:53 +00:00
19 lines
690 B
CMake
19 lines
690 B
CMake
set(RIPPLED_REPO "https://github.com/ripple/rippled.git")
|
|
set(RIPPLED_BRANCH "develop")
|
|
set(NIH_CACHE_ROOT "${CMAKE_CURRENT_BINARY_DIR}" CACHE INTERNAL "")
|
|
message(STATUS "Cloning ${RIPPLED_REPO} branch ${RIPPLED_BRANCH}")
|
|
FetchContent_Declare(rippled
|
|
GIT_REPOSITORY "${RIPPLED_REPO}"
|
|
GIT_TAG "${RIPPLED_BRANCH}"
|
|
GIT_SHALLOW ON
|
|
)
|
|
|
|
FetchContent_GetProperties(rippled)
|
|
if(NOT rippled_POPULATED)
|
|
FetchContent_Populate(rippled)
|
|
add_subdirectory(${rippled_SOURCE_DIR} ${rippled_BINARY_DIR} EXCLUDE_FROM_ALL)
|
|
endif()
|
|
|
|
target_link_libraries(clio PUBLIC xrpl_core grpc_pbufs)
|
|
target_include_directories(clio PUBLIC ${rippled_SOURCE_DIR}/src ) # TODO: Seems like this shouldn't be needed?
|