2018-12-31 20:04:05 +01:00
|
|
|
cmake_minimum_required(VERSION 3.0.2 FATAL_ERROR)
|
|
|
|
|
2019-09-26 23:24:16 +02:00
|
|
|
project(TDLib VERSION 1.5.1 LANGUAGES CXX C)
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2019-04-04 21:23:06 +02:00
|
|
|
if (POLICY CMP0054)
|
|
|
|
# do not expand quoted arguments
|
|
|
|
cmake_policy(SET CMP0054 NEW)
|
|
|
|
endif()
|
|
|
|
|
2018-03-04 02:23:52 +01:00
|
|
|
# Prevent in-source build
|
|
|
|
get_filename_component(TD_REAL_SOURCE_DIR "${CMAKE_CURRENT_SOURCE_DIR}" REALPATH)
|
|
|
|
get_filename_component(TD_REAL_BINARY_DIR "${CMAKE_CURRENT_BINARY_DIR}" REALPATH)
|
|
|
|
|
|
|
|
if (TD_REAL_BINARY_DIR STREQUAL TD_REAL_SOURCE_DIR)
|
|
|
|
message(" Out-of-source build should be used to build TDLib.")
|
|
|
|
message(" You need to remove the files already created by CMake and")
|
|
|
|
message(" rerun CMake from a new directory:")
|
|
|
|
message(" rm -rf CMakeFiles CMakeCache.txt")
|
|
|
|
message(" mkdir build")
|
|
|
|
message(" cd build")
|
|
|
|
message(" cmake ..")
|
|
|
|
message(FATAL_ERROR "In-source build failed.")
|
|
|
|
endif()
|
|
|
|
|
2018-01-21 12:45:24 +01:00
|
|
|
option(TD_ENABLE_JNI "Use \"ON\" to enable JNI-compatible TDLib API.")
|
2018-02-27 23:03:38 +01:00
|
|
|
option(TD_ENABLE_DOTNET "Use \"ON\" to enable generation of C++/CLI or C++/CX TDLib API bindings.")
|
2018-01-21 12:45:24 +01:00
|
|
|
|
2018-02-28 00:22:01 +01:00
|
|
|
if (TD_ENABLE_DOTNET AND (CMAKE_VERSION VERSION_LESS "3.1.0"))
|
|
|
|
message(FATAL_ERROR "CMake 3.1.0 or higher is required. You are running version ${CMAKE_VERSION}.")
|
|
|
|
endif()
|
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
if (NOT DEFINED CMAKE_MODULE_PATH)
|
|
|
|
set(CMAKE_MODULE_PATH "")
|
|
|
|
endif()
|
|
|
|
set(CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/CMake" "${CMAKE_MODULE_PATH}")
|
|
|
|
|
|
|
|
set(CMAKE_EXPORT_COMPILE_COMMANDS 1)
|
|
|
|
|
|
|
|
set(CMAKE_POSITION_INDEPENDENT_CODE ON)
|
|
|
|
|
|
|
|
enable_testing()
|
|
|
|
|
|
|
|
if (POLICY CMP0069)
|
2018-02-17 22:27:57 +01:00
|
|
|
option(TD_ENABLE_LTO "Use \"ON\" to enable Link Time Optimization.")
|
|
|
|
|
|
|
|
if (TD_ENABLE_LTO)
|
|
|
|
cmake_policy(SET CMP0069 NEW)
|
|
|
|
include(CheckIPOSupported)
|
|
|
|
check_ipo_supported(RESULT IPO_SUPPORTED)
|
|
|
|
if (IPO_SUPPORTED)
|
2018-03-04 02:23:52 +01:00
|
|
|
# set_property(DIRECTORY PROPERTY INTERPROCEDURAL_OPTIMIZATION TRUE) do not work?
|
2018-02-17 22:27:57 +01:00
|
|
|
string(REPLACE ";" " " CXX_FLAGS_IPO "${CMAKE_CXX_COMPILE_OPTIONS_IPO}")
|
2018-03-19 14:49:39 +01:00
|
|
|
message(STATUS "Use link time optimization CXX options: ${CXX_FLAGS_IPO}")
|
2018-02-17 22:27:57 +01:00
|
|
|
set(CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} ${CXX_FLAGS_IPO}")
|
2018-03-17 22:20:37 +01:00
|
|
|
|
|
|
|
string(REPLACE ";" " " C_FLAGS_IPO "${CMAKE_C_COMPILE_OPTIONS_IPO}")
|
2018-03-19 14:49:39 +01:00
|
|
|
message(STATUS "Use link time optimization C options: ${C_FLAGS_IPO}")
|
2018-03-17 22:20:37 +01:00
|
|
|
set(CMAKE_C_FLAGS_RELEASE "${CMAKE_C_FLAGS_RELEASE} ${C_FLAGS_IPO}")
|
|
|
|
|
|
|
|
string(REPLACE ";" " " LINK_FLAGS_IPO "${CMAKE_CXX_LINK_OPTIONS_IPO}")
|
|
|
|
message(STATUS "Use link time optimization linker options: ${LINK_FLAGS_IPO}")
|
|
|
|
set(CMAKE_EXE_LINKER_FLAGS_RELEASE "${CMAKE_EXE_LINKER_FLAGS_RELEASE} ${LINK_FLAGS_IPO}")
|
2018-02-17 22:27:57 +01:00
|
|
|
endif()
|
2018-12-31 20:04:05 +01:00
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
|
|
|
|
# Configure CCache if available
|
|
|
|
find_program(CCACHE_FOUND ccache)
|
|
|
|
#set(CCACHE_FOUND 0)
|
|
|
|
if (CCACHE_FOUND)
|
|
|
|
message(STATUS "Found ccache")
|
|
|
|
set_property(GLOBAL PROPERTY RULE_LAUNCH_COMPILE ccache)
|
|
|
|
set_property(GLOBAL PROPERTY RULE_LAUNCH_LINK ccache)
|
|
|
|
else()
|
2018-10-14 01:15:16 +02:00
|
|
|
message(STATUS "Could NOT find ccache (this is NOT an error)")
|
2018-12-31 20:04:05 +01:00
|
|
|
endif()
|
|
|
|
|
|
|
|
set(MEMPROF "" CACHE STRING "Use one of \"ON\", \"FAST\" or \"SAFE\" to enable memory profiling. \
|
2018-12-01 02:15:59 +01:00
|
|
|
Works under macOS and Linux when compiled using glibc. \
|
2018-12-31 20:04:05 +01:00
|
|
|
In FAST mode stack is unwinded only using frame pointers, which may fail. \
|
|
|
|
In SAFE mode stack is unwinded using backtrace function from execinfo.h, which may be very slow. \
|
|
|
|
By default both methods are used to achieve maximum speed and accuracy")
|
|
|
|
|
|
|
|
if (EMSCRIPTEN)
|
|
|
|
# use prebuilt zlib
|
|
|
|
set(ZLIB_FOUND 1)
|
|
|
|
set(ZLIB_LIBRARIES)
|
|
|
|
set(ZLIB_INCLUDE_DIR)
|
|
|
|
|
2019-04-23 19:59:56 +02:00
|
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -s ALLOW_MEMORY_GROWTH=1 -s MEMFS_APPEND_TO_TYPED_ARRAYS=1 -s USE_ZLIB=1 -s MODULARIZE=1 -s WEBSOCKET_URL=\"'wss:#'\" -s EXTRA_EXPORTED_RUNTIME_METHODS=\"['FS','cwrap']\"")
|
|
|
|
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -s ALLOW_MEMORY_GROWTH=1 -s MEMFS_APPEND_TO_TYPED_ARRAYS=1 -s USE_ZLIB=1 -s MODULARIZE=1 -s WEBSOCKET_URL=\"'wss:#'\" -s EXTRA_EXPORTED_RUNTIME_METHODS=\"['FS','cwrap']\"")
|
2018-12-31 20:04:05 +01:00
|
|
|
set(CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} -s DEMANGLE_SUPPORT=1 -s ASSERTIONS=1")
|
|
|
|
set(CMAKE_C_FLAGS_DEBUG "${CMAKE_C_FLAGS_DEBUG} -s DEMANGLE_SUPPORT=1 -s ASSERTIONS=1")
|
|
|
|
|
|
|
|
if (ASMJS)
|
|
|
|
set(TD_EMSCRIPTEN td_asmjs)
|
2018-12-24 02:10:26 +01:00
|
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -s WASM=0 -Wno-almost-asm")
|
|
|
|
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -s WASM=0 -Wno-almost-asm")
|
2018-12-31 20:04:05 +01:00
|
|
|
else()
|
|
|
|
set(TD_EMSCRIPTEN td_wasm)
|
|
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -s WASM=1")
|
|
|
|
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -s WASM=1")
|
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if (NOT OPENSSL_FOUND)
|
|
|
|
find_package(OpenSSL)
|
|
|
|
endif()
|
|
|
|
if (OPENSSL_FOUND)
|
|
|
|
message(STATUS "Found OpenSSL: ${OPENSSL_INCLUDE_DIR} ${OPENSSL_LIBRARIES}")
|
|
|
|
endif()
|
|
|
|
|
2019-04-04 21:23:06 +02:00
|
|
|
if (CMAKE_CXX_COMPILER_ID STREQUAL "GNU")
|
2018-12-31 20:04:05 +01:00
|
|
|
set(GCC 1)
|
2019-04-04 21:23:06 +02:00
|
|
|
elseif (CMAKE_CXX_COMPILER_ID MATCHES "Clang")
|
2018-12-31 20:04:05 +01:00
|
|
|
set(CLANG 1)
|
2019-04-04 21:23:06 +02:00
|
|
|
elseif (CMAKE_CXX_COMPILER_ID STREQUAL "Intel")
|
2018-12-31 20:04:05 +01:00
|
|
|
set(INTEL 1)
|
|
|
|
elseif (NOT MSVC)
|
|
|
|
message(FATAL_ERROR "Compiler isn't supported")
|
|
|
|
endif()
|
|
|
|
|
|
|
|
include(CheckCXXCompilerFlag)
|
|
|
|
|
|
|
|
if (GCC OR CLANG OR INTEL)
|
|
|
|
if (WIN32 AND INTEL)
|
2018-06-12 17:45:37 +02:00
|
|
|
set(STD14_FLAG /Qstd=c++14)
|
2018-12-31 20:04:05 +01:00
|
|
|
else()
|
2018-06-12 17:45:37 +02:00
|
|
|
set(STD14_FLAG -std=c++14)
|
2018-12-31 20:04:05 +01:00
|
|
|
endif()
|
2018-06-12 17:45:37 +02:00
|
|
|
check_cxx_compiler_flag(${STD14_FLAG} HAVE_STD14)
|
2018-12-31 20:04:05 +01:00
|
|
|
if (NOT HAVE_STD14)
|
|
|
|
string(REPLACE "c++14" "c++1y" STD14_FLAG "${STD14_FLAG}")
|
2018-06-12 17:45:37 +02:00
|
|
|
check_cxx_compiler_flag(${STD14_FLAG} HAVE_STD1Y)
|
2018-12-31 20:04:05 +01:00
|
|
|
set(HAVE_STD14 ${HAVE_STD1Y})
|
|
|
|
endif()
|
|
|
|
elseif (MSVC)
|
|
|
|
set(HAVE_STD14 MSVC_VERSION>=1900)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if (NOT HAVE_STD14)
|
|
|
|
message(FATAL_ERROR "No C++14 support in the compiler. Please upgrade the compiler.")
|
|
|
|
endif()
|
|
|
|
|
|
|
|
set(CMAKE_THREAD_PREFER_PTHREAD ON)
|
|
|
|
set(THREADS_PREFER_PTHREAD_FLAG ON)
|
|
|
|
find_package(Threads REQUIRED)
|
|
|
|
|
|
|
|
if (THREADS_HAVE_PTHREAD_ARG)
|
|
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -pthread")
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if (MSVC)
|
|
|
|
if (CMAKE_CXX_FLAGS_DEBUG MATCHES "/RTC1")
|
|
|
|
string(REPLACE "/RTC1" " " CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG}")
|
|
|
|
endif()
|
|
|
|
add_definitions(-D_SCL_SECURE_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS)
|
2019-04-26 04:10:56 +02:00
|
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /utf-8 /GR- /W4 /wd4100 /wd4127 /wd4324 /wd4505 /wd4814 /wd4702")
|
2018-12-31 20:04:05 +01:00
|
|
|
elseif (CLANG OR GCC)
|
|
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${STD14_FLAG} -fno-omit-frame-pointer -fno-exceptions -fno-rtti")
|
|
|
|
if (APPLE)
|
|
|
|
set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -Wl,-dead_strip,-x,-S")
|
|
|
|
else()
|
2018-02-14 11:19:12 +01:00
|
|
|
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -ffunction-sections -fdata-sections")
|
2018-12-31 20:04:05 +01:00
|
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -ffunction-sections -fdata-sections")
|
|
|
|
set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -Wl,--gc-sections -Wl,--exclude-libs,ALL")
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if (MEMPROF)
|
2018-06-12 17:45:37 +02:00
|
|
|
check_cxx_compiler_flag(-no-pie CXX_NO_PIE_FLAG)
|
2018-12-31 20:04:05 +01:00
|
|
|
if (CXX_NO_PIE_FLAG)
|
|
|
|
set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -no-pie")
|
|
|
|
elseif (APPLE)
|
|
|
|
set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -Wl,-no_pie")
|
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
elseif (INTEL)
|
|
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${STD14_FLAG}")
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if (WIN32)
|
|
|
|
add_definitions(-DNTDDI_VERSION=0x06020000 -DWINVER=0x0602 -D_WIN32_WINNT=0x0602 -DNOMINMAX -DUNICODE -D_UNICODE)
|
|
|
|
endif()
|
|
|
|
if (CYGWIN)
|
|
|
|
add_definitions(-D_DEFAULT_SOURCE=1 -DFD_SETSIZE=4096)
|
|
|
|
endif()
|
|
|
|
|
2018-10-14 01:15:16 +02:00
|
|
|
if (NOT ANDROID) # _FILE_OFFSET_BITS is broken in NDK r15, r15b and r17 and doesn't work prior to Android 7.0
|
2018-12-31 20:04:05 +01:00
|
|
|
add_definitions(-D_FILE_OFFSET_BITS=64)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
include(AddCXXCompilerFlag)
|
|
|
|
if (NOT MSVC)
|
|
|
|
add_cxx_compiler_flag("-Wall")
|
2018-02-22 18:20:22 +01:00
|
|
|
add_cxx_compiler_flag("-Wextra")
|
|
|
|
add_cxx_compiler_flag("-Wimplicit-fallthrough=2")
|
|
|
|
add_cxx_compiler_flag("-Wpointer-arith")
|
|
|
|
add_cxx_compiler_flag("-Wcast-qual")
|
|
|
|
add_cxx_compiler_flag("-Wsign-compare")
|
|
|
|
add_cxx_compiler_flag("-Wduplicated-branches")
|
|
|
|
add_cxx_compiler_flag("-Wduplicated-cond")
|
|
|
|
add_cxx_compiler_flag("-Walloc-zero")
|
|
|
|
add_cxx_compiler_flag("-Wlogical-op")
|
|
|
|
add_cxx_compiler_flag("-Wno-tautological-compare")
|
|
|
|
add_cxx_compiler_flag("-Wpointer-arith")
|
|
|
|
add_cxx_compiler_flag("-Wvla")
|
|
|
|
add_cxx_compiler_flag("-Wnon-virtual-dtor")
|
|
|
|
add_cxx_compiler_flag("-Wno-unused-parameter")
|
|
|
|
add_cxx_compiler_flag("-Wconversion")
|
|
|
|
add_cxx_compiler_flag("-Wno-sign-conversion")
|
|
|
|
add_cxx_compiler_flag("-Wc++14-compat-pedantic")
|
2018-08-28 00:08:51 +02:00
|
|
|
add_cxx_compiler_flag("-Wdeprecated")
|
2018-02-22 18:20:22 +01:00
|
|
|
add_cxx_compiler_flag("-Qunused-arguments")
|
|
|
|
add_cxx_compiler_flag("-Wodr")
|
|
|
|
add_cxx_compiler_flag("-flto-odr-type-merging")
|
|
|
|
|
|
|
|
# add_cxx_compiler_flag("-Werror")
|
|
|
|
|
|
|
|
# add_cxx_compiler_flag("-Wcast-align")
|
|
|
|
|
|
|
|
#std::int32_t <-> int and off_t <-> std::size_t/std::int64_t
|
|
|
|
# add_cxx_compiler_flag("-Wuseless-cast")
|
|
|
|
|
|
|
|
#external headers like openssl
|
|
|
|
# add_cxx_compiler_flag("-Wzero-as-null-pointer-constant")
|
2018-12-31 20:04:05 +01:00
|
|
|
endif()
|
|
|
|
|
2019-06-05 02:59:37 +02:00
|
|
|
if (GCC AND NOT (CMAKE_CXX_COMPILER_VERSION VERSION_LESS 7.0))
|
2018-10-25 17:39:40 +02:00
|
|
|
add_cxx_compiler_flag("-Wno-maybe-uninitialized") # too much false positives
|
|
|
|
endif()
|
2019-05-01 19:03:27 +02:00
|
|
|
if (GCC AND NOT (CMAKE_CXX_COMPILER_VERSION VERSION_LESS 9.0))
|
|
|
|
# warns about a lot of "return std::move", which are not redundant for compilers without fix for DR 1579, i.e. GCC 4.9 or clang 3.8
|
|
|
|
# see http://www.open-std.org/jtc1/sc22/wg21/docs/cwg_defects.html#1579
|
|
|
|
add_cxx_compiler_flag("-Wno-redundant-move")
|
|
|
|
endif()
|
2018-10-25 17:39:40 +02:00
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
#set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -isystem /usr/include/c++/v1")
|
|
|
|
#set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -stdlib=libc++")
|
|
|
|
#set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fsanitize=thread")
|
|
|
|
#set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fsanitize=address")
|
|
|
|
#set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fsanitize=undefined")
|
|
|
|
#set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fsanitize=leak")
|
|
|
|
|
|
|
|
add_subdirectory(tdtl)
|
|
|
|
|
|
|
|
add_subdirectory(tdutils)
|
|
|
|
|
|
|
|
add_subdirectory(td/generate)
|
|
|
|
|
|
|
|
if (NOT CMAKE_CROSSCOMPILING)
|
2018-03-06 12:43:46 +01:00
|
|
|
add_custom_target(prepare_cross_compiling DEPENDS tl_generate_common tdmime_auto tl_generate_json)
|
2018-02-28 19:19:33 +01:00
|
|
|
if (TD_ENABLE_DOTNET)
|
2018-03-16 16:29:16 +01:00
|
|
|
add_custom_target(remove_cpp_documentation
|
|
|
|
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}
|
|
|
|
COMMAND remove_documentation ${TL_TD_AUTO} td/telegram/Client.h td/telegram/Log.h td/tl/TlObject.h
|
|
|
|
COMMENT "Remove C++ documentation from sources"
|
|
|
|
DEPENDS remove_documentation tl_generate_common generate_dotnet_api ${TL_TD_AUTO} td/telegram/Client.h td/telegram/Log.h td/tl/TlObject.h
|
|
|
|
)
|
|
|
|
|
|
|
|
add_dependencies(prepare_cross_compiling generate_dotnet_api remove_cpp_documentation)
|
2018-02-28 19:19:33 +01:00
|
|
|
endif()
|
2018-12-31 20:04:05 +01:00
|
|
|
endif()
|
|
|
|
|
|
|
|
if (NOT OPENSSL_FOUND)
|
|
|
|
message(WARNING "Not found OpenSSL: skip TDLib, tdactor, tdnet, tddb")
|
|
|
|
return()
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if (NOT ZLIB_FOUND)
|
|
|
|
find_package(ZLIB)
|
|
|
|
endif()
|
|
|
|
if (NOT ZLIB_FOUND)
|
|
|
|
message(WARNING "Not found zlib: skip TDLib, tdactor, tdnet, tddb")
|
|
|
|
return()
|
|
|
|
endif()
|
|
|
|
|
|
|
|
add_subdirectory(tdactor)
|
|
|
|
|
|
|
|
add_subdirectory(tdnet)
|
|
|
|
|
|
|
|
add_subdirectory(sqlite)
|
|
|
|
|
|
|
|
add_subdirectory(tddb)
|
|
|
|
|
|
|
|
add_subdirectory(test)
|
|
|
|
|
|
|
|
if (NOT CMAKE_CROSSCOMPILING)
|
|
|
|
add_subdirectory(benchmark)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
|
|
|
|
get_directory_property(HAS_PARENT PARENT_DIRECTORY)
|
|
|
|
if (HAS_PARENT)
|
|
|
|
set(TL_TD_AUTO_INCLUDES ${TL_TD_AUTO_INCLUDES} PARENT_SCOPE)
|
|
|
|
set(TL_TD_API_TLO ${TL_TD_API_TLO} PARENT_SCOPE)
|
|
|
|
set(TL_TD_JSON_AUTO ${TL_TD_JSON_AUTO} PARENT_SCOPE)
|
|
|
|
set(TD_TEST_SOURCE ${TD_TEST_SOURCE} PARENT_SCOPE)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
|
|
|
|
#SOURCE SETS
|
|
|
|
|
|
|
|
set_source_files_properties(${TL_TD_AUTO} PROPERTIES GENERATED TRUE)
|
2018-01-21 12:45:24 +01:00
|
|
|
if (TD_ENABLE_JNI)
|
2018-12-31 20:04:05 +01:00
|
|
|
set(TL_JNI_OBJECT
|
|
|
|
td/tl/tl_jni_object.cpp
|
|
|
|
td/tl/tl_jni_object.h
|
|
|
|
)
|
|
|
|
else()
|
|
|
|
set(TL_JNI_OBJECT)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
set(TL_TD_SCHEME_SOURCE
|
|
|
|
${TL_TD_AUTO}
|
|
|
|
${TL_JNI_OBJECT}
|
|
|
|
td/tl/TlObject.h
|
|
|
|
td/tl/tl_object_parse.h
|
|
|
|
td/tl/tl_object_store.h
|
|
|
|
)
|
|
|
|
|
|
|
|
set_source_files_properties(${TL_TD_JSON_AUTO} PROPERTIES GENERATED TRUE)
|
|
|
|
set(TL_TD_JSON
|
|
|
|
${TL_TD_JSON_AUTO}
|
|
|
|
td/tl/tl_json.h
|
|
|
|
)
|
|
|
|
|
|
|
|
set_source_files_properties(${TL_C_AUTO} PROPERTIES GENERATED TRUE)
|
|
|
|
set(TL_C_SCHEME_SOURCE
|
|
|
|
${TL_C_AUTO}
|
|
|
|
)
|
|
|
|
|
2018-02-27 23:03:38 +01:00
|
|
|
set_source_files_properties(${TL_DOTNET_AUTO} PROPERTIES GENERATED TRUE)
|
|
|
|
set(TL_DOTNET_SCHEME_SOURCE
|
2018-02-28 02:11:29 +01:00
|
|
|
${TL_DOTNET_AUTO}
|
2018-02-28 00:09:23 +01:00
|
|
|
td/tl/tl_dotnet_object.h
|
2018-02-26 19:08:47 +01:00
|
|
|
)
|
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
set(TDLIB_SOURCE
|
2018-02-12 10:28:14 +01:00
|
|
|
td/mtproto/AuthData.cpp
|
2018-12-31 20:04:05 +01:00
|
|
|
td/mtproto/crypto.cpp
|
2019-01-31 12:26:06 +01:00
|
|
|
td/mtproto/DhHandshake.cpp
|
2018-12-31 20:04:05 +01:00
|
|
|
td/mtproto/Handshake.cpp
|
|
|
|
td/mtproto/HandshakeActor.cpp
|
|
|
|
td/mtproto/HttpTransport.cpp
|
|
|
|
td/mtproto/IStreamTransport.cpp
|
2019-07-26 23:39:39 +02:00
|
|
|
td/mtproto/KDF.cpp
|
2019-05-06 18:59:49 +02:00
|
|
|
td/mtproto/Ping.cpp
|
|
|
|
td/mtproto/PingConnection.cpp
|
2019-07-09 04:01:12 +02:00
|
|
|
td/mtproto/ProxySecret.cpp
|
2018-12-31 20:04:05 +01:00
|
|
|
td/mtproto/RawConnection.cpp
|
|
|
|
td/mtproto/SessionConnection.cpp
|
|
|
|
td/mtproto/TcpTransport.cpp
|
2019-06-26 16:13:07 +02:00
|
|
|
td/mtproto/TlsInit.cpp
|
2019-06-26 15:51:48 +02:00
|
|
|
td/mtproto/TlsReaderByteFlow.cpp
|
2018-12-31 20:04:05 +01:00
|
|
|
td/mtproto/Transport.cpp
|
|
|
|
td/mtproto/utils.cpp
|
|
|
|
|
|
|
|
td/telegram/AnimationsManager.cpp
|
|
|
|
td/telegram/AudiosManager.cpp
|
|
|
|
td/telegram/AuthManager.cpp
|
2019-05-14 01:03:05 +02:00
|
|
|
td/telegram/AutoDownloadSettings.cpp
|
2019-05-07 04:51:56 +02:00
|
|
|
td/telegram/BackgroundManager.cpp
|
2019-05-09 21:27:36 +02:00
|
|
|
td/telegram/BackgroundType.cpp
|
2018-12-31 20:04:05 +01:00
|
|
|
td/telegram/CallActor.cpp
|
|
|
|
td/telegram/CallDiscardReason.cpp
|
|
|
|
td/telegram/CallManager.cpp
|
|
|
|
td/telegram/CallbackQueriesManager.cpp
|
|
|
|
td/telegram/ClientActor.cpp
|
|
|
|
td/telegram/ConfigManager.cpp
|
|
|
|
td/telegram/ConfigShared.cpp
|
|
|
|
td/telegram/Contact.cpp
|
|
|
|
td/telegram/ContactsManager.cpp
|
2018-03-16 10:31:23 +01:00
|
|
|
td/telegram/DelayDispatcher.cpp
|
2018-12-31 20:04:05 +01:00
|
|
|
td/telegram/DeviceTokenManager.cpp
|
|
|
|
td/telegram/DhCache.cpp
|
|
|
|
td/telegram/DialogDb.cpp
|
|
|
|
td/telegram/DialogId.cpp
|
|
|
|
td/telegram/DialogParticipant.cpp
|
2019-04-09 17:38:57 +02:00
|
|
|
td/telegram/Document.cpp
|
2018-12-31 20:04:05 +01:00
|
|
|
td/telegram/DocumentsManager.cpp
|
2018-09-29 01:45:43 +02:00
|
|
|
td/telegram/DraftMessage.cpp
|
2018-12-05 10:32:31 +01:00
|
|
|
td/telegram/FileReferenceManager.cpp
|
2018-11-11 12:38:04 +01:00
|
|
|
td/telegram/files/FileBitmask.cpp
|
2018-12-31 20:04:05 +01:00
|
|
|
td/telegram/files/FileDb.cpp
|
|
|
|
td/telegram/files/FileDownloader.cpp
|
2018-12-27 19:38:43 +01:00
|
|
|
td/telegram/files/FileEncryptionKey.cpp
|
2018-12-31 20:04:05 +01:00
|
|
|
td/telegram/files/FileFromBytes.cpp
|
|
|
|
td/telegram/files/FileGcParameters.cpp
|
|
|
|
td/telegram/files/FileGcWorker.cpp
|
|
|
|
td/telegram/files/FileGenerateManager.cpp
|
|
|
|
td/telegram/files/FileHashUploader.cpp
|
|
|
|
td/telegram/files/FileLoader.cpp
|
|
|
|
td/telegram/files/FileLoaderUtils.cpp
|
|
|
|
td/telegram/files/FileLoadManager.cpp
|
|
|
|
td/telegram/files/FileManager.cpp
|
|
|
|
td/telegram/files/FileStats.cpp
|
|
|
|
td/telegram/files/FileStatsWorker.cpp
|
|
|
|
td/telegram/files/FileUploader.cpp
|
|
|
|
td/telegram/files/PartsManager.cpp
|
|
|
|
td/telegram/files/ResourceManager.cpp
|
|
|
|
td/telegram/Game.cpp
|
|
|
|
td/telegram/Global.cpp
|
|
|
|
td/telegram/HashtagHints.cpp
|
|
|
|
td/telegram/InlineQueriesManager.cpp
|
2018-09-28 22:57:34 +02:00
|
|
|
td/telegram/InputMessageText.cpp
|
2018-12-10 02:01:02 +01:00
|
|
|
td/telegram/JsonValue.cpp
|
2018-07-03 19:28:00 +02:00
|
|
|
td/telegram/LanguagePackManager.cpp
|
2018-12-31 20:04:05 +01:00
|
|
|
td/telegram/Location.cpp
|
2018-10-24 17:42:40 +02:00
|
|
|
td/telegram/Logging.cpp
|
2018-09-28 22:57:34 +02:00
|
|
|
td/telegram/MessageContent.cpp
|
2018-12-31 20:04:05 +01:00
|
|
|
td/telegram/MessageEntity.cpp
|
|
|
|
td/telegram/MessagesDb.cpp
|
|
|
|
td/telegram/MessagesManager.cpp
|
|
|
|
td/telegram/misc.cpp
|
|
|
|
td/telegram/net/AuthDataShared.cpp
|
|
|
|
td/telegram/net/ConnectionCreator.cpp
|
|
|
|
td/telegram/net/DcAuthManager.cpp
|
|
|
|
td/telegram/net/DcOptionsSet.cpp
|
|
|
|
td/telegram/net/MtprotoHeader.cpp
|
|
|
|
td/telegram/net/NetActor.cpp
|
|
|
|
td/telegram/net/NetQuery.cpp
|
|
|
|
td/telegram/net/NetQueryCounter.cpp
|
|
|
|
td/telegram/net/NetQueryCreator.cpp
|
|
|
|
td/telegram/net/NetQueryDelayer.cpp
|
|
|
|
td/telegram/net/NetQueryDispatcher.cpp
|
|
|
|
td/telegram/net/NetStatsManager.cpp
|
2019-07-20 15:13:36 +02:00
|
|
|
td/telegram/net/Proxy.cpp
|
2018-12-31 20:04:05 +01:00
|
|
|
td/telegram/net/PublicRsaKeyShared.cpp
|
|
|
|
td/telegram/net/PublicRsaKeyWatchdog.cpp
|
|
|
|
td/telegram/net/Session.cpp
|
|
|
|
td/telegram/net/SessionProxy.cpp
|
|
|
|
td/telegram/net/SessionMultiProxy.cpp
|
2018-11-09 15:14:02 +01:00
|
|
|
td/telegram/NotificationManager.cpp
|
2018-09-29 02:29:57 +02:00
|
|
|
td/telegram/NotificationSettings.cpp
|
2018-11-09 23:56:00 +01:00
|
|
|
td/telegram/NotificationType.cpp
|
2018-12-31 20:04:05 +01:00
|
|
|
td/telegram/Payments.cpp
|
|
|
|
td/telegram/PasswordManager.cpp
|
2019-02-16 17:01:47 +01:00
|
|
|
td/telegram/PhoneNumberManager.cpp
|
2018-12-31 20:04:05 +01:00
|
|
|
td/telegram/PrivacyManager.cpp
|
|
|
|
td/telegram/Photo.cpp
|
2019-06-19 02:18:44 +02:00
|
|
|
td/telegram/PhotoSizeSource.cpp
|
2019-02-19 14:45:32 +01:00
|
|
|
td/telegram/PollManager.cpp
|
2019-02-25 04:08:18 +01:00
|
|
|
td/telegram/QueryCombiner.cpp
|
2018-12-31 20:04:05 +01:00
|
|
|
td/telegram/ReplyMarkup.cpp
|
|
|
|
td/telegram/SecretChatActor.cpp
|
|
|
|
td/telegram/SecretChatDb.cpp
|
|
|
|
td/telegram/SecretChatsManager.cpp
|
2018-04-05 13:18:47 +02:00
|
|
|
td/telegram/SecureManager.cpp
|
2018-03-26 16:07:04 +02:00
|
|
|
td/telegram/SecureStorage.cpp
|
2018-03-27 15:11:15 +02:00
|
|
|
td/telegram/SecureValue.cpp
|
2019-02-16 16:49:39 +01:00
|
|
|
td/telegram/SendCodeHelper.cpp
|
2018-12-31 20:04:05 +01:00
|
|
|
td/telegram/SequenceDispatcher.cpp
|
|
|
|
td/telegram/StateManager.cpp
|
|
|
|
td/telegram/StickersManager.cpp
|
|
|
|
td/telegram/StorageManager.cpp
|
|
|
|
td/telegram/Td.cpp
|
|
|
|
td/telegram/TdDb.cpp
|
2018-06-07 20:42:17 +02:00
|
|
|
td/telegram/TermsOfService.cpp
|
2018-12-31 20:04:05 +01:00
|
|
|
td/telegram/TopDialogManager.cpp
|
|
|
|
td/telegram/UpdatesManager.cpp
|
|
|
|
td/telegram/VideoNotesManager.cpp
|
|
|
|
td/telegram/VideosManager.cpp
|
|
|
|
td/telegram/VoiceNotesManager.cpp
|
2019-04-27 02:57:59 +02:00
|
|
|
td/telegram/WebPageBlock.cpp
|
2018-12-31 20:04:05 +01:00
|
|
|
td/telegram/WebPagesManager.cpp
|
|
|
|
|
|
|
|
td/mtproto/AuthData.h
|
|
|
|
td/mtproto/AuthKey.h
|
|
|
|
td/mtproto/crypto.h
|
|
|
|
td/mtproto/CryptoStorer.h
|
2019-01-31 12:26:06 +01:00
|
|
|
td/mtproto/DhHandshake.h
|
2018-12-31 20:04:05 +01:00
|
|
|
td/mtproto/Handshake.h
|
|
|
|
td/mtproto/HandshakeActor.h
|
|
|
|
td/mtproto/HandshakeConnection.h
|
|
|
|
td/mtproto/HttpTransport.h
|
|
|
|
td/mtproto/IStreamTransport.h
|
2019-07-26 23:39:39 +02:00
|
|
|
td/mtproto/KDF.h
|
2018-12-31 20:04:05 +01:00
|
|
|
td/mtproto/NoCryptoStorer.h
|
2019-01-31 03:23:40 +01:00
|
|
|
td/mtproto/PacketInfo.h
|
2018-12-31 20:04:05 +01:00
|
|
|
td/mtproto/PacketStorer.h
|
2019-05-06 18:59:49 +02:00
|
|
|
td/mtproto/Ping.h
|
2018-12-31 20:04:05 +01:00
|
|
|
td/mtproto/PingConnection.h
|
2019-07-09 04:01:12 +02:00
|
|
|
td/mtproto/ProxySecret.h
|
2019-01-31 03:37:59 +01:00
|
|
|
td/mtproto/Query.h
|
2018-12-31 20:04:05 +01:00
|
|
|
td/mtproto/RawConnection.h
|
|
|
|
td/mtproto/SessionConnection.h
|
|
|
|
td/mtproto/TcpTransport.h
|
2019-06-26 16:13:07 +02:00
|
|
|
td/mtproto/TlsInit.h
|
2019-06-26 15:51:48 +02:00
|
|
|
td/mtproto/TlsReaderByteFlow.h
|
2018-12-31 20:04:05 +01:00
|
|
|
td/mtproto/Transport.h
|
2019-01-31 03:13:59 +01:00
|
|
|
td/mtproto/TransportType.h
|
2018-12-31 20:04:05 +01:00
|
|
|
td/mtproto/utils.h
|
|
|
|
|
|
|
|
td/telegram/AccessRights.h
|
|
|
|
td/telegram/AnimationsManager.h
|
|
|
|
td/telegram/AudiosManager.h
|
|
|
|
td/telegram/AuthManager.h
|
2019-05-14 01:03:05 +02:00
|
|
|
td/telegram/AutoDownloadSettings.h
|
2019-05-07 04:51:56 +02:00
|
|
|
td/telegram/BackgroundId.h
|
|
|
|
td/telegram/BackgroundManager.h
|
2019-05-09 21:27:36 +02:00
|
|
|
td/telegram/BackgroundType.h
|
2018-12-31 20:04:05 +01:00
|
|
|
td/telegram/CallActor.h
|
|
|
|
td/telegram/CallDiscardReason.h
|
|
|
|
td/telegram/CallId.h
|
|
|
|
td/telegram/CallManager.h
|
|
|
|
td/telegram/CallbackQueriesManager.h
|
|
|
|
td/telegram/ChannelId.h
|
|
|
|
td/telegram/ChatId.h
|
|
|
|
td/telegram/ClientActor.h
|
|
|
|
td/telegram/ConfigManager.h
|
|
|
|
td/telegram/ConfigShared.h
|
|
|
|
td/telegram/Contact.h
|
|
|
|
td/telegram/ContactsManager.h
|
2018-03-16 10:31:23 +01:00
|
|
|
td/telegram/DelayDispatcher.h
|
2018-09-28 03:21:20 +02:00
|
|
|
td/telegram/Dependencies.h
|
2018-12-31 20:04:05 +01:00
|
|
|
td/telegram/DeviceTokenManager.h
|
|
|
|
td/telegram/DhCache.h
|
|
|
|
td/telegram/DhConfig.h
|
2018-09-29 02:39:27 +02:00
|
|
|
td/telegram/DialogDate.h
|
2018-12-31 20:04:05 +01:00
|
|
|
td/telegram/DialogDb.h
|
|
|
|
td/telegram/DialogId.h
|
|
|
|
td/telegram/DialogParticipant.h
|
2019-04-09 17:38:57 +02:00
|
|
|
td/telegram/Document.h
|
2018-12-31 20:04:05 +01:00
|
|
|
td/telegram/DocumentsManager.h
|
2018-09-29 01:45:43 +02:00
|
|
|
td/telegram/DraftMessage.h
|
2018-12-05 10:32:31 +01:00
|
|
|
td/telegram/FileReferenceManager.h
|
2018-11-11 12:38:04 +01:00
|
|
|
td/telegram/files/FileBitmask.h
|
2019-01-19 22:26:23 +01:00
|
|
|
td/telegram/files/FileData.h
|
2018-12-31 20:04:05 +01:00
|
|
|
td/telegram/files/FileDb.h
|
2019-01-06 21:39:10 +01:00
|
|
|
td/telegram/files/FileDbId.h
|
2018-12-31 20:04:05 +01:00
|
|
|
td/telegram/files/FileDownloader.h
|
2018-12-27 19:06:21 +01:00
|
|
|
td/telegram/files/FileEncryptionKey.h
|
2018-12-31 20:04:05 +01:00
|
|
|
td/telegram/files/FileFromBytes.h
|
|
|
|
td/telegram/files/FileGcParameters.h
|
|
|
|
td/telegram/files/FileGcWorker.h
|
|
|
|
td/telegram/files/FileGenerateManager.h
|
|
|
|
td/telegram/files/FileHashUploader.h
|
|
|
|
td/telegram/files/FileId.h
|
|
|
|
td/telegram/files/FileLoaderActor.h
|
|
|
|
td/telegram/files/FileLoader.h
|
|
|
|
td/telegram/files/FileLoaderUtils.h
|
|
|
|
td/telegram/files/FileLoadManager.h
|
|
|
|
td/telegram/files/FileLocation.h
|
|
|
|
td/telegram/files/FileManager.h
|
2019-01-19 03:44:31 +01:00
|
|
|
td/telegram/files/FileSourceId.h
|
2018-12-31 20:04:05 +01:00
|
|
|
td/telegram/files/FileStats.h
|
|
|
|
td/telegram/files/FileStatsWorker.h
|
2019-01-30 22:37:38 +01:00
|
|
|
td/telegram/files/FileType.h
|
2018-12-31 20:04:05 +01:00
|
|
|
td/telegram/files/FileUploader.h
|
|
|
|
td/telegram/files/PartsManager.h
|
|
|
|
td/telegram/files/ResourceManager.h
|
|
|
|
td/telegram/files/ResourceState.h
|
|
|
|
td/telegram/Game.h
|
|
|
|
td/telegram/Global.h
|
|
|
|
td/telegram/HashtagHints.h
|
|
|
|
td/telegram/InlineQueriesManager.h
|
2018-09-28 22:57:34 +02:00
|
|
|
td/telegram/InputMessageText.h
|
2018-12-10 02:01:02 +01:00
|
|
|
td/telegram/JsonValue.h
|
2018-07-03 19:28:00 +02:00
|
|
|
td/telegram/LanguagePackManager.h
|
2018-12-31 20:04:05 +01:00
|
|
|
td/telegram/Location.h
|
|
|
|
td/telegram/logevent/LogEvent.h
|
2018-04-28 22:22:28 +02:00
|
|
|
td/telegram/logevent/LogEventHelper.h
|
2018-12-31 20:04:05 +01:00
|
|
|
td/telegram/logevent/SecretChatEvent.h
|
2018-10-24 17:42:40 +02:00
|
|
|
td/telegram/Logging.h
|
2018-09-28 22:57:34 +02:00
|
|
|
td/telegram/MessageContent.h
|
2018-12-31 20:04:05 +01:00
|
|
|
td/telegram/MessageEntity.h
|
|
|
|
td/telegram/MessageId.h
|
|
|
|
td/telegram/MessagesDb.h
|
|
|
|
td/telegram/MessagesManager.h
|
|
|
|
td/telegram/misc.h
|
|
|
|
td/telegram/net/AuthDataShared.h
|
|
|
|
td/telegram/net/ConnectionCreator.h
|
|
|
|
td/telegram/net/DcAuthManager.h
|
|
|
|
td/telegram/net/DcId.h
|
|
|
|
td/telegram/net/DcOptions.h
|
|
|
|
td/telegram/net/DcOptionsSet.h
|
|
|
|
td/telegram/net/MtprotoHeader.h
|
|
|
|
td/telegram/net/NetActor.h
|
|
|
|
td/telegram/net/NetQuery.h
|
|
|
|
td/telegram/net/NetQueryCounter.h
|
|
|
|
td/telegram/net/NetQueryCreator.h
|
|
|
|
td/telegram/net/NetQueryDelayer.h
|
|
|
|
td/telegram/net/NetQueryDispatcher.h
|
|
|
|
td/telegram/net/NetStatsManager.h
|
|
|
|
td/telegram/net/NetType.h
|
2019-07-09 04:13:10 +02:00
|
|
|
td/telegram/net/Proxy.h
|
2018-12-31 20:04:05 +01:00
|
|
|
td/telegram/net/PublicRsaKeyShared.h
|
|
|
|
td/telegram/net/PublicRsaKeyWatchdog.h
|
|
|
|
td/telegram/net/Session.h
|
|
|
|
td/telegram/net/SessionProxy.h
|
|
|
|
td/telegram/net/SessionMultiProxy.h
|
|
|
|
td/telegram/net/TempAuthKeyWatchdog.h
|
2018-11-26 18:05:06 +01:00
|
|
|
td/telegram/Notification.h
|
2018-11-10 00:08:47 +01:00
|
|
|
td/telegram/NotificationGroupId.h
|
2018-11-28 22:51:25 +01:00
|
|
|
td/telegram/NotificationGroupKey.h
|
2018-12-23 22:34:40 +01:00
|
|
|
td/telegram/NotificationGroupType.h
|
2018-11-10 00:08:47 +01:00
|
|
|
td/telegram/NotificationId.h
|
2018-11-09 15:14:02 +01:00
|
|
|
td/telegram/NotificationManager.h
|
2018-09-29 02:29:57 +02:00
|
|
|
td/telegram/NotificationSettings.h
|
2018-11-09 23:56:00 +01:00
|
|
|
td/telegram/NotificationType.h
|
2018-12-31 20:04:05 +01:00
|
|
|
td/telegram/PasswordManager.h
|
|
|
|
td/telegram/Payments.h
|
2019-02-16 17:01:47 +01:00
|
|
|
td/telegram/PhoneNumberManager.h
|
2018-12-31 20:04:05 +01:00
|
|
|
td/telegram/Photo.h
|
2019-06-19 02:18:44 +02:00
|
|
|
td/telegram/PhotoSizeSource.h
|
2019-02-19 14:45:32 +01:00
|
|
|
td/telegram/PollId.h
|
|
|
|
td/telegram/PollManager.h
|
2018-12-31 20:04:05 +01:00
|
|
|
td/telegram/PrivacyManager.h
|
|
|
|
td/telegram/PtsManager.h
|
2019-02-25 04:08:18 +01:00
|
|
|
td/telegram/QueryCombiner.h
|
2018-12-31 20:04:05 +01:00
|
|
|
td/telegram/ReplyMarkup.h
|
2018-10-01 01:26:06 +02:00
|
|
|
td/telegram/RequestActor.h
|
2018-12-31 20:04:05 +01:00
|
|
|
td/telegram/SecretChatActor.h
|
|
|
|
td/telegram/SecretChatId.h
|
|
|
|
td/telegram/SecretChatDb.h
|
|
|
|
td/telegram/SecretChatsManager.h
|
|
|
|
td/telegram/SecretInputMedia.h
|
2018-04-05 13:18:47 +02:00
|
|
|
td/telegram/SecureManager.h
|
2018-03-26 16:07:04 +02:00
|
|
|
td/telegram/SecureStorage.h
|
2018-03-27 15:11:15 +02:00
|
|
|
td/telegram/SecureValue.h
|
2019-02-16 16:49:39 +01:00
|
|
|
td/telegram/SendCodeHelper.h
|
2018-12-31 20:04:05 +01:00
|
|
|
td/telegram/SequenceDispatcher.h
|
2019-01-18 17:39:19 +01:00
|
|
|
td/telegram/SetWithPosition.h
|
2018-12-31 20:04:05 +01:00
|
|
|
td/telegram/StateManager.h
|
|
|
|
td/telegram/StickersManager.h
|
|
|
|
td/telegram/StorageManager.h
|
|
|
|
td/telegram/Td.h
|
|
|
|
td/telegram/TdCallback.h
|
|
|
|
td/telegram/TdDb.h
|
|
|
|
td/telegram/TdParameters.h
|
2018-06-07 20:42:17 +02:00
|
|
|
td/telegram/TermsOfService.h
|
2018-12-31 20:04:05 +01:00
|
|
|
td/telegram/TopDialogManager.h
|
|
|
|
td/telegram/UniqueId.h
|
|
|
|
td/telegram/UpdatesManager.h
|
|
|
|
td/telegram/UserId.h
|
|
|
|
td/telegram/Version.h
|
|
|
|
td/telegram/VideoNotesManager.h
|
|
|
|
td/telegram/VideosManager.h
|
|
|
|
td/telegram/VoiceNotesManager.h
|
2019-04-27 02:57:59 +02:00
|
|
|
td/telegram/WebPageBlock.h
|
2018-12-31 20:04:05 +01:00
|
|
|
td/telegram/WebPageId.h
|
|
|
|
td/telegram/WebPagesManager.h
|
|
|
|
|
|
|
|
td/telegram/AnimationsManager.hpp
|
|
|
|
td/telegram/AudiosManager.hpp
|
2018-03-14 19:04:41 +01:00
|
|
|
td/telegram/AuthManager.hpp
|
2019-05-10 16:58:44 +02:00
|
|
|
td/telegram/BackgroundType.hpp
|
2019-04-09 17:52:53 +02:00
|
|
|
td/telegram/Document.hpp
|
2018-12-31 20:04:05 +01:00
|
|
|
td/telegram/DocumentsManager.hpp
|
2018-09-29 01:45:43 +02:00
|
|
|
td/telegram/DraftMessage.hpp
|
2019-02-16 16:49:39 +01:00
|
|
|
td/telegram/FileReferenceManager.hpp
|
|
|
|
td/telegram/files/FileData.hpp
|
2018-12-31 20:04:05 +01:00
|
|
|
td/telegram/files/FileId.hpp
|
2019-02-16 16:49:39 +01:00
|
|
|
td/telegram/files/FileLocation.hpp
|
2018-12-31 20:04:05 +01:00
|
|
|
td/telegram/files/FileManager.hpp
|
|
|
|
td/telegram/Game.hpp
|
2018-09-28 22:57:34 +02:00
|
|
|
td/telegram/InputMessageText.hpp
|
2018-04-02 00:45:51 +02:00
|
|
|
td/telegram/MessageEntity.hpp
|
2018-09-29 02:29:57 +02:00
|
|
|
td/telegram/NotificationSettings.hpp
|
2018-12-31 20:04:05 +01:00
|
|
|
td/telegram/Payments.hpp
|
|
|
|
td/telegram/Photo.hpp
|
2019-06-19 02:18:44 +02:00
|
|
|
td/telegram/PhotoSizeSource.hpp
|
2019-02-19 14:45:32 +01:00
|
|
|
td/telegram/PollId.hpp
|
|
|
|
td/telegram/PollManager.hpp
|
2018-12-31 20:04:05 +01:00
|
|
|
td/telegram/ReplyMarkup.hpp
|
2018-03-27 15:11:15 +02:00
|
|
|
td/telegram/SecureValue.hpp
|
2019-02-16 16:49:39 +01:00
|
|
|
td/telegram/SendCodeHelper.hpp
|
2018-12-31 20:04:05 +01:00
|
|
|
td/telegram/StickersManager.hpp
|
|
|
|
td/telegram/VideoNotesManager.hpp
|
|
|
|
td/telegram/VideosManager.hpp
|
|
|
|
td/telegram/VoiceNotesManager.hpp
|
|
|
|
|
|
|
|
${TL_TD_SCHEME_SOURCE}
|
|
|
|
)
|
|
|
|
|
|
|
|
set(MEMPROF_SOURCE
|
|
|
|
memprof/memprof.cpp
|
|
|
|
memprof/memprof.h
|
|
|
|
)
|
|
|
|
|
|
|
|
#RULES
|
|
|
|
|
|
|
|
file(MAKE_DIRECTORY auto)
|
|
|
|
|
|
|
|
if (WIN32)
|
|
|
|
set(GIT_COMMIT_CMD powershell -ExecutionPolicy ByPass ./gen_git_commit_h.ps1)
|
|
|
|
else()
|
|
|
|
set(GIT_COMMIT_CMD ./gen_git_commit_h.sh)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
add_custom_target(git_commit ALL
|
|
|
|
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}
|
|
|
|
COMMAND ${GIT_COMMIT_CMD}
|
|
|
|
COMMENT "Generate git_commit.h"
|
|
|
|
)
|
|
|
|
|
|
|
|
#LIBRARIES
|
|
|
|
|
|
|
|
# memprof - simple library for memory usage profiling
|
|
|
|
add_library(memprof STATIC ${MEMPROF_SOURCE})
|
|
|
|
target_include_directories(memprof PUBLIC $<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}>)
|
|
|
|
target_link_libraries(memprof PRIVATE tdutils)
|
|
|
|
if (MEMPROF)
|
|
|
|
target_compile_definitions(memprof PRIVATE -DUSE_MEMPROF=1)
|
|
|
|
if (MEMPROF STREQUAL "SAFE")
|
|
|
|
target_compile_definitions(memprof PRIVATE -DUSE_MEMPROF_SAFE=1)
|
|
|
|
elseif (MEMPROF STREQUAL "FAST")
|
|
|
|
target_compile_definitions(memprof PRIVATE -DUSE_MEMPROF_FAST=1)
|
2019-04-04 21:23:06 +02:00
|
|
|
elseif (NOT MEMPROF)
|
2018-12-31 20:04:05 +01:00
|
|
|
message(FATAL_ERROR "Unsupported MEMPROF value \"${MEMPROF}\"")
|
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
|
|
|
|
|
|
|
|
# tdcore - mostly internal TDLib interface. One should use tdactor for interactions with it.
|
|
|
|
add_library(tdcore STATIC ${TDLIB_SOURCE})
|
|
|
|
target_include_directories(tdcore PUBLIC $<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}> $<BUILD_INTERFACE:${TL_TD_AUTO_INCLUDES}>)
|
|
|
|
target_include_directories(tdcore SYSTEM PRIVATE ${OPENSSL_INCLUDE_DIR})
|
2018-02-17 22:24:34 +01:00
|
|
|
target_link_libraries(tdcore PUBLIC tdactor tdutils tdnet tddb PRIVATE ${OPENSSL_CRYPTO_LIBRARY} ${CMAKE_DL_LIBS} ${ZLIB_LIBRARIES})
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2018-01-21 12:45:24 +01:00
|
|
|
if (TD_ENABLE_JNI AND NOT ANDROID) # jni is available by default on Android
|
2018-01-15 14:47:24 +01:00
|
|
|
if (NOT JNI_FOUND)
|
|
|
|
find_package(JNI REQUIRED)
|
|
|
|
endif()
|
|
|
|
message(STATUS "Found JNI: ${JNI_INCLUDE_DIRS} ${JNI_LIBRARIES}")
|
|
|
|
target_include_directories(tdcore PUBLIC ${JAVA_INCLUDE_PATH} ${JAVA_INCLUDE_PATH2})
|
|
|
|
target_link_libraries(tdcore PUBLIC ${JAVA_JVM_LIBRARY})
|
|
|
|
endif()
|
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
if (NOT CMAKE_CROSSCOMPILING)
|
|
|
|
add_dependencies(tdcore tl_generate_common)
|
2018-01-21 12:45:24 +01:00
|
|
|
if (TD_ENABLE_JNI)
|
2018-01-22 06:24:47 +01:00
|
|
|
add_dependencies(tdcore td_generate_java_api)
|
2018-01-21 12:45:24 +01:00
|
|
|
endif()
|
2018-03-16 16:29:16 +01:00
|
|
|
if (TD_ENABLE_DOTNET)
|
|
|
|
add_dependencies(tdcore remove_cpp_documentation)
|
|
|
|
endif()
|
2018-12-31 20:04:05 +01:00
|
|
|
endif()
|
|
|
|
|
|
|
|
add_library(tdclient td/telegram/Client.cpp td/telegram/Client.h td/telegram/Log.cpp td/telegram/Log.h)
|
|
|
|
target_include_directories(tdclient PUBLIC
|
|
|
|
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}>
|
|
|
|
$<BUILD_INTERFACE:${TL_TD_AUTO_INCLUDES}>
|
|
|
|
)
|
|
|
|
target_link_libraries(tdclient PRIVATE tdcore)
|
|
|
|
|
2018-01-21 12:45:24 +01:00
|
|
|
if (TD_ENABLE_JNI AND NOT ANDROID) # jni is available by default on Android
|
2018-01-15 14:47:24 +01:00
|
|
|
target_include_directories(tdclient PUBLIC ${JAVA_INCLUDE_PATH} ${JAVA_INCLUDE_PATH2})
|
|
|
|
target_link_libraries(tdclient PUBLIC ${JAVA_JVM_LIBRARY})
|
|
|
|
endif()
|
|
|
|
|
2018-02-26 19:08:47 +01:00
|
|
|
if (TD_ENABLE_DOTNET)
|
2018-02-28 00:13:04 +01:00
|
|
|
add_library(tddotnet SHARED
|
2018-02-28 00:09:23 +01:00
|
|
|
td/telegram/ClientDotNet.cpp
|
|
|
|
td/telegram/LogDotNet.cpp
|
2018-02-27 23:03:38 +01:00
|
|
|
${TL_DOTNET_SCHEME_SOURCE}
|
2018-02-26 19:08:47 +01:00
|
|
|
)
|
2018-03-02 14:55:55 +01:00
|
|
|
set(VCPKG_APPLOCAL_LIBRARY_DEPS ON)
|
|
|
|
set_target_properties(tddotnet PROPERTIES OUTPUT_NAME Telegram.Td)
|
2018-02-28 00:13:04 +01:00
|
|
|
target_link_libraries(tddotnet PRIVATE tdclient tdutils)
|
|
|
|
target_include_directories(tddotnet PUBLIC
|
2018-02-26 19:08:47 +01:00
|
|
|
$<BUILD_INTERFACE:${TL_TD_AUTO_INCLUDES}>
|
|
|
|
)
|
|
|
|
if (NOT CMAKE_CROSSCOMPILING)
|
2018-02-28 00:13:04 +01:00
|
|
|
add_dependencies(tddotnet generate_dotnet_api)
|
2018-02-26 19:08:47 +01:00
|
|
|
endif()
|
2018-03-15 17:25:51 +01:00
|
|
|
|
2018-03-16 16:29:16 +01:00
|
|
|
target_compile_options(tddotnet PRIVATE "/doc")
|
2019-04-04 21:23:06 +02:00
|
|
|
if (CMAKE_SYSTEM_NAME STREQUAL "WindowsStore")
|
2018-02-28 00:13:04 +01:00
|
|
|
set_target_properties(tddotnet PROPERTIES VS_WINRT_COMPONENT "true")
|
|
|
|
target_compile_options(tddotnet PUBLIC "/ZW")
|
2018-02-26 19:08:47 +01:00
|
|
|
else()
|
2018-02-28 00:13:04 +01:00
|
|
|
set_target_properties(tddotnet PROPERTIES COMPILE_FLAGS "/GR /clr")
|
|
|
|
target_compile_options(tddotnet PUBLIC "/EHa")
|
2018-02-26 19:08:47 +01:00
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
# tdc - TDLib interface in pure c.
|
2018-10-22 17:49:05 +02:00
|
|
|
add_library(tdc STATIC EXCLUDE_FROM_ALL ${TL_C_SCHEME_SOURCE} td/telegram/td_c_client.cpp td/telegram/td_c_client.h)
|
2018-12-31 20:04:05 +01:00
|
|
|
target_include_directories(tdc PUBLIC
|
|
|
|
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}>
|
|
|
|
$<BUILD_INTERFACE:${TL_TD_AUTO_INCLUDES}>)
|
|
|
|
target_link_libraries(tdc PRIVATE tdclient tdutils)
|
|
|
|
if (NOT CMAKE_CROSSCOMPILING)
|
|
|
|
add_dependencies(tdc tl_generate_c)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
add_library(tdjson_private STATIC ${TL_TD_JSON} td/telegram/ClientJson.cpp td/telegram/ClientJson.h)
|
|
|
|
target_include_directories(tdjson_private PUBLIC
|
|
|
|
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}>
|
|
|
|
$<BUILD_INTERFACE:${TL_TD_AUTO_INCLUDES}>)
|
|
|
|
target_link_libraries(tdjson_private PUBLIC tdclient tdutils)
|
|
|
|
if (NOT CMAKE_CROSSCOMPILING)
|
|
|
|
add_dependencies(tdjson_private tl_generate_common tl_generate_json)
|
2018-03-16 16:29:16 +01:00
|
|
|
if (TD_ENABLE_DOTNET)
|
|
|
|
add_dependencies(tdjson_private remove_cpp_documentation)
|
|
|
|
endif()
|
2018-12-31 20:04:05 +01:00
|
|
|
endif()
|
|
|
|
|
|
|
|
set(TD_JSON_HEADERS td/telegram/td_json_client.h td/telegram/td_log.h)
|
|
|
|
set(TD_JSON_SOURCE td/telegram/td_json_client.cpp td/telegram/td_log.cpp)
|
|
|
|
|
|
|
|
include(GenerateExportHeader)
|
|
|
|
|
|
|
|
add_library(tdjson SHARED ${TD_JSON_SOURCE} ${TD_JSON_HEADERS})
|
|
|
|
target_link_libraries(tdjson PRIVATE tdjson_private)
|
|
|
|
generate_export_header(tdjson EXPORT_FILE_NAME ${CMAKE_CURRENT_BINARY_DIR}/td/telegram/tdjson_export.h)
|
2018-03-04 13:27:12 +01:00
|
|
|
target_include_directories(tdjson PUBLIC
|
|
|
|
$<BUILD_INTERFACE:${CMAKE_CURRENT_BINARY_DIR}>
|
|
|
|
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}>)
|
2018-12-31 20:04:05 +01:00
|
|
|
if (APPLE)
|
|
|
|
set_target_properties(tdjson PROPERTIES LINK_FLAGS "-Wl,-exported_symbols_list,${CMAKE_CURRENT_SOURCE_DIR}/tdclientjson_export_list")
|
|
|
|
endif()
|
|
|
|
|
|
|
|
add_library(tdjson_static STATIC ${TD_JSON_SOURCE} ${TD_JSON_HEADERS})
|
|
|
|
target_link_libraries(tdjson_static PRIVATE tdjson_private)
|
|
|
|
target_compile_definitions(tdjson_static PUBLIC TDJSON_STATIC_DEFINE)
|
2018-03-04 13:27:12 +01:00
|
|
|
target_include_directories(tdjson_static PUBLIC
|
|
|
|
$<BUILD_INTERFACE:${CMAKE_CURRENT_BINARY_DIR}>
|
|
|
|
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}>)
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2018-01-15 14:47:24 +01:00
|
|
|
set(BIGOBJ)
|
2018-12-31 20:04:05 +01:00
|
|
|
if (WIN32 OR CYGWIN)
|
|
|
|
if (MSVC)
|
2018-01-15 14:47:24 +01:00
|
|
|
set(BIGOBJ "/bigobj")
|
2018-12-31 20:04:05 +01:00
|
|
|
elseif (GCC)
|
2018-01-15 14:47:24 +01:00
|
|
|
set(BIGOBJ "-Wa,-mbig-obj")
|
2018-12-31 20:04:05 +01:00
|
|
|
endif()
|
|
|
|
endif()
|
2018-01-15 14:47:24 +01:00
|
|
|
if (BIGOBJ)
|
|
|
|
target_compile_options(tdc PUBLIC ${BIGOBJ})
|
|
|
|
target_compile_options(tdcore PUBLIC ${BIGOBJ})
|
|
|
|
target_compile_options(tdclient PUBLIC ${BIGOBJ})
|
|
|
|
target_compile_options(tdjson PUBLIC ${BIGOBJ})
|
|
|
|
target_compile_options(tdjson_static PUBLIC ${BIGOBJ})
|
2018-02-28 00:09:23 +01:00
|
|
|
if (TD_ENABLE_DOTNET)
|
2018-02-28 00:13:04 +01:00
|
|
|
target_compile_options(tddotnet PUBLIC "/bigobj")
|
2018-02-28 00:09:23 +01:00
|
|
|
endif()
|
2018-01-15 14:47:24 +01:00
|
|
|
endif()
|
2018-12-31 20:04:05 +01:00
|
|
|
|
|
|
|
if (EMSCRIPTEN)
|
|
|
|
set(TD_EMSCRIPTEN_SRC td/telegram/td_emscripten.cpp)
|
|
|
|
add_executable(${TD_EMSCRIPTEN} ${TD_EMSCRIPTEN_SRC})
|
|
|
|
target_include_directories(${TD_EMSCRIPTEN} PUBLIC $<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}>)
|
2018-09-18 15:43:16 +02:00
|
|
|
target_link_libraries(${TD_EMSCRIPTEN} PRIVATE tdjson_static tdactor)
|
2018-12-31 20:04:05 +01:00
|
|
|
endif()
|
|
|
|
|
|
|
|
#EXECUTABLES
|
|
|
|
if (NOT CMAKE_CROSSCOMPILING)
|
|
|
|
add_executable(tg_cli td/telegram/cli.cpp ${TL_TD_JSON})
|
|
|
|
|
|
|
|
if (NOT READLINE_FOUND)
|
|
|
|
find_package(Readline)
|
|
|
|
endif()
|
|
|
|
if (NOT READLINE_FOUND)
|
2018-10-14 01:15:16 +02:00
|
|
|
message(STATUS "Could NOT find Readline (this is NOT an error)")
|
2018-12-31 20:04:05 +01:00
|
|
|
else()
|
|
|
|
message(STATUS "Found Readline: ${READLINE_INCLUDE_DIR} ${READLINE_LIBRARY}")
|
2019-02-01 15:04:18 +01:00
|
|
|
if (NOT USABLE_READLINE_FOUND)
|
|
|
|
set(CMAKE_REQUIRED_INCLUDES "${READLINE_INCLUDE_DIR}")
|
|
|
|
set(CMAKE_REQUIRED_LIBRARIES "${READLINE_LIBRARY}")
|
|
|
|
include(CheckCXXSourceCompiles)
|
|
|
|
unset(USABLE_READLINE_FOUND CACHE)
|
|
|
|
check_cxx_source_compiles("#include <stdio.h>\n#include <readline/readline.h>\nint main() { rl_free(0); }" USABLE_READLINE_FOUND)
|
|
|
|
if (NOT USABLE_READLINE_FOUND)
|
|
|
|
message(STATUS "Found Readline is too old, ignore it (this is NOT an error)")
|
|
|
|
unset(READLINE_INCLUDE_DIR CACHE)
|
|
|
|
unset(READLINE_LIBRARY CACHE)
|
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
if (USABLE_READLINE_FOUND)
|
|
|
|
target_link_libraries(tg_cli PRIVATE ${READLINE_LIBRARY})
|
|
|
|
target_include_directories(tg_cli SYSTEM PRIVATE ${READLINE_INCLUDE_DIR})
|
|
|
|
target_compile_definitions(tg_cli PRIVATE -DUSE_READLINE=1)
|
|
|
|
endif()
|
2018-12-31 20:04:05 +01:00
|
|
|
endif()
|
2018-01-24 16:45:57 +01:00
|
|
|
target_link_libraries(tg_cli PRIVATE memprof tdclient tdcore tdtl)
|
2018-12-31 20:04:05 +01:00
|
|
|
add_dependencies(tg_cli tl_generate_json)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
#Exported libraries
|
|
|
|
add_library(TdStatic INTERFACE)
|
|
|
|
target_link_libraries(TdStatic INTERFACE tdclient)
|
|
|
|
|
|
|
|
add_library(TdJson INTERFACE)
|
|
|
|
target_link_libraries(TdJson INTERFACE tdjson)
|
|
|
|
|
|
|
|
add_library(TdJsonStatic INTERFACE)
|
|
|
|
target_link_libraries(TdJsonStatic INTERFACE tdjson_static)
|
|
|
|
|
|
|
|
add_library(Td::TdStatic ALIAS TdStatic)
|
|
|
|
add_library(Td::TdJson ALIAS TdJson)
|
|
|
|
add_library(Td::TdJsonStatic ALIAS TdJsonStatic)
|
|
|
|
|
2018-01-21 12:45:24 +01:00
|
|
|
install(TARGETS tdjson TdJson tdjson_static TdJsonStatic tdjson_private tdclient tdcore TdStatic EXPORT TdTargets
|
2018-12-31 20:04:05 +01:00
|
|
|
LIBRARY DESTINATION lib
|
|
|
|
ARCHIVE DESTINATION lib
|
|
|
|
RUNTIME DESTINATION bin
|
|
|
|
INCLUDES DESTINATION include
|
|
|
|
)
|
|
|
|
|
|
|
|
install(EXPORT TdTargets
|
|
|
|
FILE TdTargets.cmake
|
|
|
|
NAMESPACE Td::
|
|
|
|
DESTINATION lib/cmake/Td
|
|
|
|
)
|
|
|
|
|
|
|
|
install(FILES ${TD_JSON_HEADERS} ${CMAKE_CURRENT_BINARY_DIR}/td/telegram/tdjson_export.h DESTINATION include/td/telegram)
|
|
|
|
install(FILES td/telegram/Client.h td/telegram/Log.h DESTINATION include/td/telegram)
|
|
|
|
install(FILES td/tl/TlObject.h DESTINATION include/td/tl)
|
|
|
|
install(FILES ${TL_TD_AUTO_INCLUDES}/td/telegram/td_api.h ${TL_TD_AUTO_INCLUDES}/td/telegram/td_api.hpp DESTINATION include/td/telegram)
|
2018-01-21 12:45:24 +01:00
|
|
|
if (TD_ENABLE_JNI)
|
2018-01-15 14:47:24 +01:00
|
|
|
install(FILES td/tl/tl_jni_object.h DESTINATION include/td/tl)
|
|
|
|
endif()
|
2018-12-31 20:04:05 +01:00
|
|
|
|
|
|
|
include(CMakePackageConfigHelpers)
|
|
|
|
write_basic_package_version_file("TdConfigVersion.cmake"
|
|
|
|
VERSION ${TDLib_VERSION}
|
|
|
|
COMPATIBILITY ExactVersion
|
|
|
|
)
|
|
|
|
install(FILES "TdConfig.cmake" "${CMAKE_CURRENT_BINARY_DIR}/TdConfigVersion.cmake"
|
|
|
|
DESTINATION lib/cmake/Td
|
|
|
|
)
|
2018-09-17 13:39:11 +02:00
|
|
|
|
|
|
|
# Add SOVERSION to shared libraries
|
|
|
|
set_property(TARGET tdclient PROPERTY SOVERSION ${TDLib_VERSION})
|
|
|
|
set_property(TARGET tdjson PROPERTY SOVERSION ${TDLib_VERSION})
|