2016-08-10 19:36:00 +00:00
|
|
|
# This file is part of Telegram Desktop,
|
|
|
|
# the official desktop version of Telegram messaging app, see https://telegram.org
|
|
|
|
#
|
|
|
|
# Telegram Desktop is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# It is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# In addition, as a special exception, the copyright holders give permission
|
|
|
|
# to link the code of portions of this program with the OpenSSL library.
|
|
|
|
#
|
|
|
|
# Full license: https://github.com/telegramdesktop/tdesktop/blob/master/LICENSE
|
|
|
|
# Copyright (c) 2014 John Preston, https://desktop.telegram.org
|
|
|
|
|
|
|
|
{
|
|
|
|
'conditions': [
|
|
|
|
[ 'build_win', {
|
2016-08-27 04:49:18 +00:00
|
|
|
'defines': [
|
|
|
|
'WIN32',
|
|
|
|
'_WINDOWS',
|
|
|
|
'_UNICODE',
|
|
|
|
'UNICODE',
|
|
|
|
'HAVE_STDINT_H',
|
|
|
|
'ZLIB_WINAPI',
|
|
|
|
'_SCL_SECURE_NO_WARNINGS',
|
|
|
|
'_USING_V110_SDK71_',
|
|
|
|
],
|
2016-08-10 19:36:00 +00:00
|
|
|
'msvs_cygwin_shell': 0,
|
|
|
|
'msvs_settings': {
|
|
|
|
'VCCLCompilerTool': {
|
|
|
|
'ProgramDataBaseFileName': '$(OutDir)\\$(ProjectName).pdb',
|
|
|
|
'DebugInformationFormat': '3', # Program Database (/Zi)
|
|
|
|
'AdditionalOptions': [
|
2017-08-31 16:28:58 +00:00
|
|
|
'/std:c++latest',
|
2017-09-21 19:21:33 +00:00
|
|
|
'/MP', # Enable multi process build.
|
|
|
|
'/EHsc', # Catch C++ exceptions only, extern C functions never throw a C++ exception.
|
|
|
|
'/WX', # Treat warnings as errors.
|
|
|
|
'/w14834', # [[nodiscard]]
|
2016-08-10 19:36:00 +00:00
|
|
|
],
|
|
|
|
'TreatWChar_tAsBuiltInType': 'false',
|
|
|
|
},
|
|
|
|
'VCLinkerTool': {
|
2016-08-13 17:43:21 +00:00
|
|
|
'MinimumRequiredVersion': '5.01',
|
2016-08-10 19:36:00 +00:00
|
|
|
'ImageHasSafeExceptionHandlers': 'false', # Disable /SAFESEH
|
|
|
|
},
|
|
|
|
},
|
2016-10-02 09:30:28 +00:00
|
|
|
'msvs_external_builder_build_cmd': [
|
|
|
|
'ninja.exe',
|
|
|
|
'-C',
|
|
|
|
'$(OutDir)',
|
|
|
|
'-k0',
|
|
|
|
'$(ProjectName)',
|
|
|
|
],
|
2016-08-10 19:36:00 +00:00
|
|
|
'libraries': [
|
2017-04-19 09:44:07 +00:00
|
|
|
'-lwinmm',
|
|
|
|
'-limm32',
|
|
|
|
'-lws2_32',
|
|
|
|
'-lkernel32',
|
|
|
|
'-luser32',
|
|
|
|
'-lgdi32',
|
|
|
|
'-lwinspool',
|
|
|
|
'-lcomdlg32',
|
|
|
|
'-ladvapi32',
|
|
|
|
'-lshell32',
|
|
|
|
'-lole32',
|
|
|
|
'-loleaut32',
|
|
|
|
'-luuid',
|
|
|
|
'-lodbc32',
|
|
|
|
'-lodbccp32',
|
|
|
|
'-lShlwapi',
|
|
|
|
'-lIphlpapi',
|
|
|
|
'-lGdiplus',
|
|
|
|
'-lStrmiids',
|
2016-08-10 19:36:00 +00:00
|
|
|
],
|
|
|
|
|
|
|
|
'configurations': {
|
|
|
|
'Debug': {
|
|
|
|
'msvs_settings': {
|
|
|
|
'VCCLCompilerTool': {
|
|
|
|
'Optimization': '0', # Disabled (/Od)
|
|
|
|
'RuntimeLibrary': '1', # Multi-threaded Debug (/MTd)
|
|
|
|
},
|
|
|
|
'VCLinkerTool': {
|
|
|
|
'GenerateDebugInformation': 'true', # true (/DEBUG)
|
2016-08-13 17:43:21 +00:00
|
|
|
'IgnoreDefaultLibraryNames': 'LIBCMT',
|
2016-08-10 19:36:00 +00:00
|
|
|
'LinkIncremental': '2', # Yes (/INCREMENTAL)
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
'Release': {
|
|
|
|
'msvs_settings': {
|
|
|
|
'VCCLCompilerTool': {
|
2016-08-13 17:43:21 +00:00
|
|
|
'Optimization': '2', # Maximize Speed (/O2)
|
|
|
|
'InlineFunctionExpansion': '2', # Any suitable (/Ob2)
|
|
|
|
'EnableIntrinsicFunctions': 'true', # Yes (/Oi)
|
|
|
|
'FavorSizeOrSpeed': '1', # Favor fast code (/Ot)
|
|
|
|
'RuntimeLibrary': '0', # Multi-threaded (/MT)
|
|
|
|
'EnableEnhancedInstructionSet': '2', # Streaming SIMD Extensions 2 (/arch:SSE2)
|
|
|
|
'WholeProgramOptimization': 'true', # /GL
|
2016-08-10 19:36:00 +00:00
|
|
|
},
|
|
|
|
'VCLinkerTool': {
|
2016-08-13 17:43:21 +00:00
|
|
|
'GenerateDebugInformation': 'true', # /DEBUG
|
|
|
|
'OptimizeReferences': '2',
|
|
|
|
'LinkTimeCodeGeneration': '1', # /LTCG
|
2016-08-10 19:36:00 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2016-09-09 06:15:11 +00:00
|
|
|
'conditions': [
|
2017-02-01 10:12:52 +00:00
|
|
|
[ '"<(official_build_target)" != "" and "<(official_build_target)" != "win" and "<(official_build_target)" != "uwp"', {
|
2016-09-09 06:15:11 +00:00
|
|
|
'sources': [ '__Wrong_Official_Build_Target__' ],
|
|
|
|
}],
|
|
|
|
],
|
2016-08-10 19:36:00 +00:00
|
|
|
}],
|
|
|
|
],
|
|
|
|
}
|