mirror of
https://github.com/GoldenCheetah/GoldenCheetah.git
synced 2026-02-13 16:18:42 +00:00
[skip ci] Currently we use it only to generate Qt5 AppImages for Linux and we are about to deprecate Qt5 support.
6 lines
195 B
Bash
Executable File
6 lines
195 B
Bash
Executable File
#!/bin/bash
|
|
set -ev
|
|
qmake -recursive QMAKE_CXXFLAGS_WARN_ON+="-Wno-deprecated-declarations -Wno-unused-value" QMAKE_CFLAGS_WARN_ON+="-Wno-deprecated-declarations -Wno-unused-value"
|
|
make -j4
|
|
exit
|