mirror of
https://github.com/AyuGram/AyuGramDesktop.git
synced 2025-04-14 13:17:08 +02:00
16 lines
372 B
CMake
16 lines
372 B
CMake
cmake_minimum_required(VERSION 3.12)
|
|
cmake_policy(SET CMP0076 NEW)
|
|
cmake_policy(SET CMP0091 NEW)
|
|
|
|
project(Telegram
|
|
LANGUAGES C CXX
|
|
VERSION 1.9.0
|
|
DESCRIPTION "Official Telegram Desktop messenger"
|
|
HOMEPAGE_URL "https://desktop.telegram.org"
|
|
)
|
|
|
|
include(cmake/constants.cmake)
|
|
include(cmake/functions.cmake)
|
|
|
|
add_subdirectory(cmake)
|
|
add_subdirectory(Telegram)
|