mirror of
https://github.com/AyuGram/AyuGramDesktop.git
synced 2025-04-22 09:07:05 +02:00
25 lines
962 B
Markdown
25 lines
962 B
Markdown
## Build instructions for macOS
|
|
|
|
### Prepare folder
|
|
|
|
Choose a folder for the future build, for example **/Users/user/TBuild**. It will be named ***BuildPath*** in the rest of this document. All commands will be launched from Terminal.
|
|
|
|
### Clone source code and prepare libraries
|
|
|
|
Go to ***BuildPath*** and run
|
|
|
|
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
|
|
brew install git automake cmake wget pkg-config gnu-tar ninja nasm meson
|
|
|
|
sudo xcode-select -s /Applications/Xcode.app/Contents/Developer
|
|
|
|
git clone --recursive https://github.com/AyuGram/AyuGramDesktop.git tdesktop
|
|
./tdesktop/Telegram/build/prepare/mac.sh
|
|
|
|
### Building the project
|
|
|
|
Go to ***BuildPath*/tdesktop/Telegram** and run
|
|
|
|
./configure.sh -D TDESKTOP_API_ID=2040 -D TDESKTOP_API_HASH=b18441a1ff607e10a989891a5462e627
|
|
|
|
Then launch Xcode, open ***BuildPath*/tdesktop/out/Telegram.xcodeproj** and build for Debug / Release.
|