mirror of
https://github.com/kotatogram/kotatogram-desktop
synced 2025-10-11 14:06:25 +00:00
11 lines
242 B
Bash
Executable File
11 lines
242 B
Bash
Executable File
#!/bin/bash
|
|
|
|
cd Telegram
|
|
scl enable devtoolset-8 -- ./configure.sh "$@"
|
|
|
|
if [ -n "$DEBUG" ]; then
|
|
scl enable devtoolset-8 -- cmake3 --build ../out/Debug -j$(nproc)
|
|
else
|
|
scl enable devtoolset-8 -- cmake3 --build ../out/Release -j$(nproc)
|
|
fi
|