1
0
Fork 0
mirror of https://github.com/ton-blockchain/ton synced 2025-03-09 15:40:10 +00:00

bugfixed + crypto update

- compiles vs BoringSSL
- config proposal/vote fift code
- bugfixes in catchain
- other small fixes
This commit is contained in:
ton 2020-03-27 18:59:00 +04:00
parent 606e970ed5
commit a31f8d4424
39 changed files with 722 additions and 132 deletions

View file

@ -56,7 +56,7 @@ set(TON_CRYPTO_SOURCE
ellcurve/TwEdwards.h
openssl/bignum.h
openssl/digest.h
openssl/digest.hpp
openssl/rand.hpp
openssl/residue.h
@ -391,7 +391,15 @@ endif()
add_executable(create-state block/create-state.cpp)
target_include_directories(create-state PUBLIC $<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}>
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/..>)
target_link_libraries(create-state PUBLIC ton_crypto fift-lib ton_block tonlib)
if (INTERNAL_COMPILE)
target_link_libraries(create-state PUBLIC ton_crypto fift-lib ton_block tonlib)
else()
if (TONLIB_COMPILE)
target_link_libraries(create-state PUBLIC ton_crypto fift-lib ton_block tonlib)
else()
target_link_libraries(create-state PUBLIC ton_crypto fift-lib ton_block)
endif()
endif()
if (WINGETOPT_FOUND)
target_link_libraries_system(create-state wingetopt)
endif()