mirror of
https://github.com/ton-blockchain/ton
synced 2025-03-09 15:40:10 +00:00
initial commit
This commit is contained in:
commit
c2da007f40
1610 changed files with 398047 additions and 0 deletions
14
example/cpp/CMakeLists.txt
Normal file
14
example/cpp/CMakeLists.txt
Normal file
|
@ -0,0 +1,14 @@
|
|||
cmake_minimum_required(VERSION 3.1 FATAL_ERROR)
|
||||
|
||||
project(TonExample VERSION 1.0 LANGUAGES CXX)
|
||||
|
||||
find_package(Tonlib 0.5 REQUIRED)
|
||||
|
||||
add_executable(tonjson_example tonjson_example.cpp)
|
||||
target_link_libraries(tonjson_example PRIVATE Tonlib::TonlibJson)
|
||||
set_property(TARGET tonjson_example PROPERTY CXX_STANDARD 11)
|
||||
|
||||
add_executable(tonlib_example tonlib_example.cpp)
|
||||
|
||||
target_link_libraries(tonlib_example PRIVATE Tonlib::Tonlib)
|
||||
set_property(TARGET tonlib_example PROPERTY CXX_STANDARD 14)
|
Loading…
Add table
Add a link
Reference in a new issue