mirror of
https://github.com/XRPLF/clio.git
synced 2025-11-28 15:45:52 +00:00
Implements https://github.com/XRPLF/XRPL-Standards/tree/master/XLS-0033d-multi-purpose-tokens
21 lines
490 B
CMake
21 lines
490 B
CMake
add_library(clio_etl)
|
|
|
|
target_sources(
|
|
clio_etl
|
|
PRIVATE CacheLoaderSettings.cpp
|
|
ETLHelpers.cpp
|
|
ETLService.cpp
|
|
ETLState.cpp
|
|
LoadBalancer.cpp
|
|
NetworkValidatedLedgers.cpp
|
|
NFTHelpers.cpp
|
|
Source.cpp
|
|
MPTHelpers.cpp
|
|
impl/AmendmentBlockHandler.cpp
|
|
impl/ForwardingSource.cpp
|
|
impl/GrpcSource.cpp
|
|
impl/SubscriptionSource.cpp
|
|
)
|
|
|
|
target_link_libraries(clio_etl PUBLIC clio_data)
|