mirror of
https://github.com/AyuGram/AyuGramDesktop.git
synced 2026-07-31 09:36:12 +00:00
11 lines
240 B
Bash
Executable File
11 lines
240 B
Bash
Executable File
#!/usr/bin/scl enable llvm-toolset-7.0 -- scl enable devtoolset-10 -- bash
|
|
|
|
cd Telegram
|
|
./configure.sh "$@"
|
|
|
|
if [ -n "$DEBUG" ]; then
|
|
cmake --build ../out --config Debug --parallel
|
|
else
|
|
cmake --build ../out --config Release --parallel
|
|
fi
|