2019-04-03 18:51:14 +00:00
# Build instructions for Visual Studio 2019
2016-07-03 13:17:22 +00:00
2017-02-16 10:57:53 +00:00
- [Prepare folder ](#prepare-folder )
2017-09-06 09:12:27 +00:00
- [Install third party software ](#install-third-party-software )
- [Clone source code and prepare libraries ](#clone-source-code-and-prepare-libraries )
- [Build the project ](#build-the-project )
- [Qt Visual Studio Tools ](#qt-visual-studio-tools )
2016-07-03 13:17:22 +00:00
## Prepare folder
2014-06-25 20:15:34 +00:00
2017-09-28 09:40:26 +00:00
Choose an empty folder for the future build, for example **D:\\TBuild** . It will be named ** *BuildPath*** in the rest of this document. Create two folders there, ** *BuildPath*\\ThirdParty** and ** *BuildPath*\\Libraries**.
2016-10-11 09:56:51 +00:00
2019-04-03 18:51:14 +00:00
All commands (if not stated otherwise) will be launched from **x86 Native Tools Command Prompt for VS 2019.bat** (should be in **Start Menu > Visual Studio 2019** menu folder). Pay attention not to use any other Command Prompt.
2014-06-25 20:15:34 +00:00
2018-11-04 10:29:30 +00:00
### Obtain your API credentials
You will require **api_id** and **api_hash** to access the Telegram API servers. To learn how to obtain them [click here][api_credentials].
2017-09-06 09:12:27 +00:00
## Install third party software
2017-04-14 09:58:10 +00:00
2017-09-06 09:12:27 +00:00
* Download **ActivePerl** installer from [https://www.activestate.com/activeperl/downloads ](https://www.activestate.com/activeperl/downloads ) and install to ** *BuildPath*\\ThirdParty\\Perl**
* Download **NASM** installer from [http://www.nasm.us ](http://www.nasm.us ) and install to ** *BuildPath*\\ThirdParty\\NASM**
* Download **Yasm** executable from [http://yasm.tortall.net/Download.html ](http://yasm.tortall.net/Download.html ), rename to *yasm.exe* and put to ** *BuildPath*\\ThirdParty\\yasm**
* Download **MSYS2** installer from [http://www.msys2.org/ ](http://www.msys2.org/ ) and install to ** *BuildPath*\\ThirdParty\\msys64**
* Download **jom** archive from [http://download.qt.io/official_releases/jom/jom.zip ](http://download.qt.io/official_releases/jom/jom.zip ) and unpack to ** *BuildPath*\\ThirdParty\\jom**
2017-10-11 21:33:49 +00:00
* Download **Python 2.7** installer from [https://www.python.org/downloads/ ](https://www.python.org/downloads/ ) and install to ** *BuildPath*\\ThirdParty\\Python27**
2017-09-06 09:12:27 +00:00
* Download **CMake** installer from [https://cmake.org/download/ ](https://cmake.org/download/ ) and install to ** *BuildPath*\\ThirdParty\\cmake**
* Download **Ninja** executable from [https://github.com/ninja-build/ninja/releases/download/v1.7.2/ninja-win.zip ](https://github.com/ninja-build/ninja/releases/download/v1.7.2/ninja-win.zip ) and unpack to ** *BuildPath*\\ThirdParty\\Ninja**
2017-04-14 09:58:10 +00:00
2019-04-03 18:51:14 +00:00
Open **x86 Native Tools Command Prompt for VS 2019.bat** , go to ** *BuildPath*** and run
2014-06-25 20:15:34 +00:00
2017-09-06 09:12:27 +00:00
cd ThirdParty
2019-04-03 18:51:14 +00:00
git clone https://github.com/telegramdesktop/gyp.git
2017-09-06 09:12:27 +00:00
cd gyp
2019-04-03 18:51:14 +00:00
git checkout tdesktop
2017-09-06 09:12:27 +00:00
cd ..\..
2014-06-25 20:15:34 +00:00
2017-09-06 09:12:27 +00:00
Add **GYP** and **Ninja** to your PATH:
2014-06-25 20:15:34 +00:00
2017-09-06 09:12:27 +00:00
* Open **Control Panel** -> **System** -> **Advanced system settings**
* Press **Environment Variables...**
* Select **Path**
* Press **Edit**
* Add ** *BuildPath*\\ThirdParty\\gyp** value
* Add ** *BuildPath*\\ThirdParty\\Ninja** value
2016-10-11 09:56:51 +00:00
2017-09-06 09:12:27 +00:00
## Clone source code and prepare libraries
2014-06-25 20:15:34 +00:00
2019-04-03 18:51:14 +00:00
Open **x86 Native Tools Command Prompt for VS 2019.bat** , go to ** *BuildPath*** and run
2014-06-25 20:15:34 +00:00
2017-11-15 20:16:44 +00:00
SET PATH=%cd%\ThirdParty\Perl\bin;%cd%\ThirdParty\Python27;%cd%\ThirdParty\NASM;%cd%\ThirdParty\jom;%cd%\ThirdParty\cmake\bin;%cd%\ThirdParty\yasm;%PATH%
2015-10-19 21:24:39 +00:00
2017-09-06 09:12:27 +00:00
git clone --recursive https://github.com/telegramdesktop/tdesktop.git
mkdir Libraries
cd Libraries
2018-11-14 13:20:24 +00:00
git clone https://github.com/ericniebler/range-v3 range-v3
2017-11-19 14:37:07 +00:00
2017-09-06 09:12:27 +00:00
git clone https://github.com/telegramdesktop/lzma.git
cd lzma\C\Util\LzmaLib
msbuild LzmaLib.sln /property:Configuration=Debug
msbuild LzmaLib.sln /property:Configuration=Release
cd ..\..\..\..
2015-10-19 21:24:39 +00:00
git clone https://github.com/openssl/openssl.git
cd openssl
git checkout OpenSSL_1_0_1-stable
2017-09-06 09:12:27 +00:00
perl Configure no-shared --prefix=%cd%\Release --openssldir=%cd%\Release VC-WIN32
2015-10-19 21:24:39 +00:00
ms\do_ms
nmake -f ms\nt.mak
nmake -f ms\nt.mak install
2017-09-06 09:12:27 +00:00
xcopy tmp32\lib.pdb Release\lib\
nmake -f ms\nt.mak clean
perl Configure no-shared --prefix=%cd%\Debug --openssldir=%cd%\Debug debug-VC-WIN32
2015-10-19 21:24:39 +00:00
ms\do_ms
nmake -f ms\nt.mak
nmake -f ms\nt.mak install
2017-09-06 09:12:27 +00:00
xcopy tmp32.dbg\lib.pdb Debug\lib\
cd ..
2014-06-25 20:15:34 +00:00
2017-09-06 09:12:27 +00:00
git clone https://github.com/telegramdesktop/zlib.git
cd zlib
git checkout tdesktop
cd contrib\vstudio\vc14
msbuild zlibstat.vcxproj /property:Configuration=Debug
msbuild zlibstat.vcxproj /property:Configuration=ReleaseWithoutAsm
cd ..\..\..\..
2014-09-04 07:33:44 +00:00
2019-04-03 18:51:14 +00:00
git clone https://github.com/telegramdesktop/openal-soft.git
2016-04-26 15:26:18 +00:00
cd openal-soft
2018-11-08 11:26:44 +00:00
git checkout fix_macro
2017-09-06 09:12:27 +00:00
cd build
2019-04-04 17:51:06 +00:00
cmake -G "Visual Studio 16 2019" -A Win32 -D LIBTYPE:STRING=STATIC -D FORCE_STATIC_VCRT:STRING=ON ..
2018-11-08 11:26:44 +00:00
msbuild OpenAL.vcxproj /property:Configuration=Debug
msbuild OpenAL.vcxproj /property:Configuration=Release
2017-09-06 09:12:27 +00:00
cd ..\..
git clone https://github.com/google/breakpad
cd breakpad
git checkout a1dbcdcb43
git apply ../../tdesktop/Telegram/Patches/breakpad.diff
cd src
git clone https://github.com/google/googletest testing
cd client\windows
gyp --no-circular-check breakpad_client.gyp --format=ninja
cd ..\..
ninja -C out/Debug common crash_generation_client exception_handler
ninja -C out/Release common crash_generation_client exception_handler
2018-08-27 15:08:16 +00:00
cd tools\windows\dump_syms
gyp dump_syms.gyp
msbuild dump_syms.vcxproj /property:Configuration=Release
cd ..\..\..\..\..
2014-09-04 07:33:44 +00:00
2015-06-01 12:44:10 +00:00
git clone https://github.com/telegramdesktop/opus.git
2017-08-05 17:13:19 +00:00
cd opus
2017-09-06 09:12:27 +00:00
git checkout tdesktop
cd win32\VS2015
msbuild opus.sln /property:Configuration=Debug /property:Platform="Win32"
msbuild opus.sln /property:Configuration=Release /property:Platform="Win32"
2014-09-04 07:33:44 +00:00
2017-09-11 11:04:25 +00:00
cd ..\..\..\..
2017-09-06 09:12:27 +00:00
SET PATH_BACKUP_=%PATH%
SET PATH=%cd%\ThirdParty\msys64\usr\bin;%PATH%
cd Libraries
2014-09-04 07:33:44 +00:00
2015-10-19 21:24:39 +00:00
git clone https://github.com/FFmpeg/FFmpeg.git ffmpeg
cd ffmpeg
2017-11-23 15:00:11 +00:00
git checkout release/3.4
2014-09-04 07:33:44 +00:00
2017-09-06 09:12:27 +00:00
set CHERE_INVOKING=enabled_from_arguments
set MSYS2_PATH_TYPE=inherit
bash --login ../../tdesktop/Telegram/Patches/build_ffmpeg_win.sh
2015-06-01 12:49:53 +00:00
2017-09-06 09:12:27 +00:00
SET PATH=%PATH_BACKUP_%
2017-09-11 11:04:25 +00:00
cd ..
2016-10-17 20:20:30 +00:00
2016-10-17 21:33:24 +00:00
git clone git://code.qt.io/qt/qt5.git qt5_6_2
cd qt5_6_2
2015-10-19 21:24:39 +00:00
perl init-repository --module-subset=qtbase,qtimageformats
2016-10-17 21:33:24 +00:00
git checkout v5.6.2
2017-09-06 09:12:27 +00:00
cd qtimageformats
git checkout v5.6.2
cd ..\qtbase
git checkout v5.6.2
git apply ../../../tdesktop/Telegram/Patches/qtbase_5_6_2.diff
2017-09-11 11:04:25 +00:00
cd ..
2017-02-16 10:57:53 +00:00
2017-09-06 09:12:27 +00:00
configure -debug-and-release -force-debug-info -opensource -confirm-license -static -I "%cd%\..\openssl\Release\include" -no-opengl -openssl-linked OPENSSL_LIBS_DEBUG="%cd%\..\openssl\Debug\lib\ssleay32.lib %cd%\..\openssl\Debug\lib\libeay32.lib" OPENSSL_LIBS_RELEASE="%cd%\..\openssl\Release\lib\ssleay32.lib %cd%\..\openssl\Release\lib\libeay32.lib" -mp -nomake examples -nomake tests -platform win32-msvc2015
2017-02-16 10:57:53 +00:00
2017-09-06 09:12:27 +00:00
jom -j4
jom -j4 install
2016-05-19 11:29:06 +00:00
cd ..
2014-06-25 20:15:34 +00:00
2017-09-06 09:12:27 +00:00
cd ../tdesktop/Telegram
gyp\refresh.bat
2016-08-14 18:41:31 +00:00
2017-09-06 09:12:27 +00:00
## Build the project
2017-02-18 19:23:50 +00:00
2017-02-19 08:29:08 +00:00
If you want to pass a build define (like `TDESKTOP_DISABLE_AUTOUPDATE` or `TDESKTOP_DISABLE_NETWORK_PROXY` ), call `set TDESKTOP_BUILD_DEFINES=TDESKTOP_DISABLE_AUTOUPDATE,TDESKTOP_DISABLE_NETWORK_PROXY,...` (comma seperated string)
2017-02-18 19:23:50 +00:00
2017-09-06 09:12:27 +00:00
After, call **gyp\refresh.bat** once again.
2016-08-14 18:41:31 +00:00
2019-04-03 18:51:14 +00:00
* Open ** *BuildPath*\\tdesktop\\Telegram\\Telegram.sln** in Visual Studio 2019
2017-09-06 09:12:27 +00:00
* Select Telegram project and press Build > Build Telegram (Debug and Release configurations)
* The result Telegram.exe will be located in **D:\TBuild\tdesktop\out\Debug** (and **Release** )
2016-08-14 18:41:31 +00:00
2017-09-06 09:12:27 +00:00
### Qt Visual Studio Tools
2016-08-14 18:41:31 +00:00
2017-09-06 09:12:27 +00:00
For better debugging you may want to install Qt Visual Studio Tools:
2016-08-14 18:41:31 +00:00
2017-09-06 09:12:27 +00:00
* Open **Tools** -> **Extensions and Updates...**
* Go to **Online** tab
* Search for **Qt**
* Install **Qt Visual Studio Tools** extension
2018-11-04 10:29:30 +00:00
[api_credentials]: api_credentials.md