2
0
mirror of https://github.com/telegramdesktop/tdesktop synced 2025-08-22 02:07:24 +00:00
tdesktop/CMakeLists.txt

30 lines
813 B
CMake
Raw Normal View History

2019-11-21 14:56:17 +03:00
# This file is part of Telegram Desktop,
# the official desktop application for the Telegram messaging service.
#
# For license and copyright information please follow this link:
# https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
cmake_minimum_required(VERSION 3.16)
2019-11-08 11:27:39 +03:00
cmake_policy(SET CMP0076 NEW)
cmake_policy(SET CMP0091 NEW)
2019-11-08 13:05:59 +03:00
set_property(GLOBAL PROPERTY USE_FOLDERS ON)
2019-11-21 14:56:17 +03:00
include(cmake/variables.cmake)
2019-11-08 11:27:39 +03:00
project(Telegram
LANGUAGES C CXX
VERSION 1.9.0
DESCRIPTION "Official Telegram Desktop messenger"
HOMEPAGE_URL "https://desktop.telegram.org"
)
include(cmake/options.cmake)
2019-11-08 14:08:40 +03:00
include(cmake/init_target.cmake)
include(cmake/generate_target.cmake)
include(cmake/nice_target_sources.cmake)
2019-11-08 15:02:15 +03:00
include(cmake/external/qt/package.cmake)
2019-11-08 11:27:39 +03:00
add_subdirectory(cmake)
add_subdirectory(Telegram)