mirror of
https://github.com/ton-blockchain/ton
synced 2025-02-12 11:12:16 +00:00
* Bugfixes in TVM and node * Upgrade to C++17 * Improve GitHub builds * Fix existing tests and partially integrate them into builds --------- Co-authored-by: neodiX42 <namlem@gmail.com> Co-authored-by: EmelyanenkoK <emelyanenko.kirill@gmail.com>
23 lines
630 B
CMake
23 lines
630 B
CMake
cmake_minimum_required(VERSION 3.5 FATAL_ERROR)
|
|
|
|
set(TL_UTILS_SOURCE
|
|
common-utils.hpp
|
|
tl-utils.hpp
|
|
tl-utils.cpp
|
|
)
|
|
|
|
add_library(tl-utils STATIC ${TL_UTILS_SOURCE})
|
|
|
|
target_include_directories(tl-utils PUBLIC $<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/..>)
|
|
target_link_libraries(tl-utils PUBLIC tl_api ton_crypto )
|
|
|
|
set(TL_LITE_UTILS_SOURCE
|
|
common-utils.hpp
|
|
lite-utils.hpp
|
|
lite-utils.cpp
|
|
)
|
|
|
|
add_library(tl-lite-utils STATIC ${TL_LITE_UTILS_SOURCE})
|
|
|
|
target_include_directories(tl-lite-utils PUBLIC $<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/..>)
|
|
target_link_libraries(tl-lite-utils PUBLIC tl_lite_api ton_crypto )
|