mirror of
https://github.com/danog/ton.git
synced 2024-11-26 12:04:48 +01:00
13140ddf29
1. Updated block header, proofs now contain more data Notice, that old proofs may become invalid in the future 2. Fixed message routing 3. Fixed block creator id in block header 4. Support for full proofs in tonlib 5. Support for partial state download 6. Some other bugfixes
9 lines
458 B
CMake
9 lines
458 B
CMake
cmake_minimum_required(VERSION 3.0.2 FATAL_ERROR)
|
|
|
|
add_library(lite-client-common lite-client-common.cpp lite-client-common.h)
|
|
target_link_libraries(lite-client-common PUBLIC tdutils tdactor adnllite tl_api tl_lite_api tl-lite-utils ton_crypto ton_block)
|
|
|
|
add_executable(lite-client lite-client.cpp lite-client.h)
|
|
target_link_libraries(lite-client tdutils tdactor adnllite tl_api tl_lite_api tl-lite-utils ton_crypto ton_block
|
|
terminal lite-client-common)
|