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

pow-testgiver support

This commit is contained in:
ton 2020-07-06 17:07:20 +03:00
parent dbde9c1c40
commit f064b1047a
257 changed files with 6665 additions and 2608 deletions

View file

@ -25,6 +25,7 @@
Copyright 2017-2020 Telegram Systems LLP
*/
#include "td/tl/tl_writer.h"
#include "tl_writer_cpp.h"
#include "tl_writer_h.h"
#include "tl_writer_hpp.h"
@ -66,7 +67,8 @@ int main() {
{"\"tl/tl_object_parse.h\"", "\"tl/tl_object_store.h\"", "\"td/utils/int_types.h\"",
"\"crypto/common/bitstring.h\""},
{"<string>", "\"td/utils/buffer.h\"", "\"crypto/common/bitstring.h\""});
td::gen_json_converter(td::tl::read_tl_config_from_file("scheme/ton_api.tlo"), "auto/tl/ton_api_json", "ton_api");
td::gen_json_converter(td::tl::read_tl_config_from_file("scheme/ton_api.tlo"), "auto/tl/ton_api_json", "ton_api",
td::tl::TL_writer::Mode::All);
#ifdef TONLIB_ENABLE_JNI
generate_cpp<td::TD_TL_writer_jni_cpp, td::TD_TL_writer_jni_h>(
@ -79,5 +81,5 @@ int main() {
{"<string>", "\"td/utils/SharedSlice.h\""});
#endif
td::gen_json_converter(td::tl::read_tl_config_from_file("scheme/tonlib_api.tlo"), "auto/tl/tonlib_api_json",
"tonlib_api");
"tonlib_api", td::tl::TL_writer::Mode::All);
}