mirror of
https://github.com/AyuGram/AyuGramDesktop.git
synced 2025-06-22 06:53:54 +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
|