mirror of
https://github.com/AyuGram/AyuGramDesktop.git
synced 2025-07-24 14:33:02 +02:00
11 lines
184 B
Bash
Executable file
11 lines
184 B
Bash
Executable file
#!/bin/bash
|
|
set -e
|
|
|
|
cd Telegram
|
|
./configure.sh "$@"
|
|
|
|
if [ -n "$DEBUG" ]; then
|
|
cmake --build ../out --config Debug --parallel
|
|
else
|
|
cmake --build ../out --config Release --parallel
|
|
fi
|