1
0
mirror of https://github.com/danog/ton.git synced 2024-11-26 20:14:55 +01:00
ton/example/cpp
2019-09-10 12:31:51 +04:00
..
CMakeLists.txt initial commit 2019-09-07 14:33:36 +04:00
README.md deleted unused code, support for logrotate, update in block validation code 2019-09-10 12:31:51 +04:00
tonjson_example.cpp initial commit 2019-09-07 14:33:36 +04:00

Tonlib C++ basic usage examples

Tonlib should be prebuilt and installed to local subdirectory tonlib/:

cd <path to Ton sources>
mkdir build
cd build
cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX:PATH=../example/cpp/tonlib ..
cmake --build . --target install

Then you can build the examples:

cd <path to Ton sources>/example/cpp
mkdir build
cd build
cmake -DCMAKE_BUILD_TYPE=Release -DTonlib_DIR=<full path to Ton sources>/example/cpp/tonlib/lib/cmake/Tonlib ..
cmake --build .

To run tonjson_example you may need to manually copy a tonlibjson shared library from tonlib/bin to a directory containing built binaries.