mirror of
https://github.com/vale981/tdesktop
synced 2025-03-06 18:21:42 -05:00
17 lines
562 B
Bash
Executable file
17 lines
562 B
Bash
Executable file
set -e
|
|
FullExecPath=$PWD
|
|
pushd `dirname $0` > /dev/null
|
|
FullScriptPath=`pwd`
|
|
popd > /dev/null
|
|
|
|
cd $FullScriptPath
|
|
#gyp --depth=. --generator-output=../.. -Goutput_dir=out Telegram.gyp --format=ninja
|
|
#gyp --depth=. --generator-output=../.. -Goutput_dir=out Telegram.gyp --format=xcode-ninja
|
|
#gyp --depth=. --generator-output=../.. -Goutput_dir=out Telegram.gyp --format=xcode
|
|
# use patched gyp with Xcode project generator
|
|
../../../Libraries/gyp/gyp --depth=. --generator-output=../.. -Goutput_dir=out Telegram.gyp --format=xcode
|
|
cd ../..
|
|
|
|
cd $FullExecPath
|
|
exit
|
|
|