mirror of
https://github.com/telegramdesktop/tdesktop
synced 2025-01-08 23:59:50 +00:00
62cab0750b
It already builds in Debug, using rules for Qt MOC and RCC. Need to start use rules for styles/langs/numbers, test on WinXP. Need to support Release and Deploy configurations.
12 lines
362 B
Batchfile
12 lines
362 B
Batchfile
@echo OFF
|
|
setlocal enabledelayedexpansion
|
|
set "FullScriptPath=%~dp0"
|
|
set "FullExecPath=%cd%"
|
|
|
|
cd "%FullScriptPath%"
|
|
call gyp --depth=. --generator-output=../build/msvs -Goutput_dir=../../../out Telegram.gyp --format=ninja
|
|
call gyp --depth=. --generator-output=../build/msvs -Goutput_dir=../../../out Telegram.gyp --format=msvs-ninja
|
|
cd "%FullExecPath%"
|
|
|
|
exit /b
|