blob: e09b51fe632c28e79b994074c89c29e33eae2f9d (
plain)
1
2
3
4
5
6
7
|
cmake_minimum_required(VERSION 4.1)
project(AutoTelegramReaction)
add_executable(AutoTelegramReaction main.cpp)
add_subdirectory(td)
target_link_libraries(AutoTelegramReaction PRIVATE Td::TdStatic)
|