8 lines
266 B
Shell
Executable file
8 lines
266 B
Shell
Executable file
#!/bin/bash
|
|
set -e
|
|
|
|
cd Telegram
|
|
./configure.sh "$@"
|
|
# KEEP_GOING=1 lets ninja report every failing translation unit in one
|
|
# run instead of stopping at the first; the exit status still fails.
|
|
cmake --build ../out --config "${CONFIG:-Release}" ${KEEP_GOING:+-- -k 0}
|