Include variables.cmake after project() call.

Fixes #6950.
This commit is contained in:
John Preston
2020-01-17 11:29:10 +03:00
parent 208b5d7b5b
commit 1f447f98d8
3 changed files with 4 additions and 4 deletions
+2 -1
View File
@@ -10,7 +10,7 @@ cmake_policy(SET CMP0091 NEW)
set_property(GLOBAL PROPERTY USE_FOLDERS ON)
include(cmake/variables.cmake)
include(cmake/validate_special_target.cmake)
include(cmake/version.cmake)
desktop_app_parse_version(Telegram/build/version)
@@ -22,6 +22,7 @@ project(Telegram
)
set_property(DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} PROPERTY VS_STARTUP_PROJECT Telegram)
include(cmake/variables.cmake)
include(cmake/nice_target_sources.cmake)
include(cmake/target_link_static_libraries.cmake)
include(cmake/target_link_frameworks.cmake)