mirror of
https://github.com/ton-blockchain/ton
synced 2025-02-12 19:22:37 +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>
29 lines
693 B
CMake
29 lines
693 B
CMake
cmake_minimum_required(VERSION 3.5 FATAL_ERROR)
|
|
|
|
#SOURCE SETS
|
|
set(TDTL_SOURCE
|
|
td/tl/tl_config.cpp
|
|
td/tl/tl_core.cpp
|
|
td/tl/tl_file_outputer.cpp
|
|
td/tl/tl_file_utils.cpp
|
|
td/tl/tl_generate.cpp
|
|
td/tl/tl_outputer.cpp
|
|
td/tl/tl_string_outputer.cpp
|
|
td/tl/tl_writer.cpp
|
|
|
|
td/tl/tl_config.h
|
|
td/tl/tl_core.h
|
|
td/tl/tl_file_outputer.h
|
|
td/tl/tl_file_utils.h
|
|
td/tl/tl_generate.h
|
|
td/tl/tl_outputer.h
|
|
td/tl/tl_simple.h
|
|
td/tl/tl_simple_parser.h
|
|
td/tl/tl_string_outputer.h
|
|
td/tl/tl_writer.h
|
|
)
|
|
|
|
add_library(tdtl STATIC ${TDTL_SOURCE})
|
|
target_include_directories(tdtl PUBLIC $<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}>)
|
|
#TODO
|
|
#target_compile_options(tdtl PRIVATE "-std=c++03")
|