mirror of
https://github.com/AyuGram/AyuGramDesktop.git
synced 2025-07-13 01:02:56 +02:00
10 lines
242 B
Bash
Executable file
10 lines
242 B
Bash
Executable file
#!/bin/bash
|
|
|
|
cd Telegram
|
|
scl enable devtoolset-9 -- ./configure.sh "$@"
|
|
|
|
if [ -n "$DEBUG" ]; then
|
|
scl enable devtoolset-9 -- cmake3 --build ../out/Debug -j$(nproc)
|
|
else
|
|
scl enable devtoolset-9 -- cmake3 --build ../out/Release -j$(nproc)
|
|
fi
|