mirror of
https://github.com/ton-blockchain/ton
synced 2025-02-13 03:32:22 +00:00
* Fix error handling in Torrent.cpp, improve choosing peers for upload * Various improvements in storage daemon "get-pieces-info" Store "added at" Improve calculating up/down speed Improve TL protocol for future compatibility Remove empty directories on "--remove-files" Better windows support Debug logs in PeerActor More restrictions on TorrentInfo Bugfixes * Global speed limits for download and upload +bugfix * Reset download/upload speed on changing settings or completion * Exclude some system files in TorrentCreator
60 lines
1.3 KiB
CMake
60 lines
1.3 KiB
CMake
cmake_minimum_required(VERSION 3.0.2 FATAL_ERROR)
|
|
|
|
if (NOT OPENSSL_FOUND)
|
|
find_package(OpenSSL REQUIRED)
|
|
endif()
|
|
|
|
|
|
set(STORAGE_SOURCE
|
|
LoadSpeed.cpp
|
|
MerkleTree.cpp
|
|
MicrochunkTree.cpp
|
|
NodeActor.cpp
|
|
PeerActor.cpp
|
|
PeerState.cpp
|
|
SpeedLimiter.cpp
|
|
Torrent.cpp
|
|
TorrentCreator.cpp
|
|
TorrentHeader.cpp
|
|
TorrentInfo.cpp
|
|
TorrentMeta.cpp
|
|
|
|
db.h
|
|
Bitset.h
|
|
LoadSpeed.h
|
|
MerkleTree.h
|
|
NodeActor.h
|
|
PartsHelper.h
|
|
PeerActor.h
|
|
PeerState.h
|
|
SpeedLimiter.h
|
|
Torrent.h
|
|
TorrentCreator.h
|
|
TorrentHeader.h
|
|
TorrentInfo.h
|
|
TorrentMeta.h
|
|
PeerManager.h
|
|
MicrochunkTree.h)
|
|
set(STORAGE_CLI_SOURCE
|
|
storage-cli.cpp
|
|
)
|
|
|
|
add_library(storage STATIC ${STORAGE_SOURCE})
|
|
target_link_libraries(storage tdutils tdactor tddb ton_crypto tl_api ${JEMALLOC_LIBRARIES})
|
|
target_include_directories(storage PUBLIC
|
|
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}>
|
|
)
|
|
|
|
add_executable(storage-cli ${STORAGE_CLI_SOURCE})
|
|
target_link_libraries(storage-cli storage overlay tdutils tdactor adnl tl_api dht
|
|
rldp rldp2 fift-lib memprof terminal git ${JEMALLOC_LIBRARIES})
|
|
|
|
set(STORAGE_TEST_SOURCE
|
|
${CMAKE_CURRENT_SOURCE_DIR}/test/storage.cpp
|
|
PARENT_SCOPE
|
|
)
|
|
|
|
add_subdirectory(storage-daemon)
|
|
|
|
# Do not install it yet
|
|
install(TARGETS storage-cli storage-daemon storage-daemon-cli RUNTIME DESTINATION bin)
|