1
0
mirror of https://github.com/qTox/qTox.git synced 2024-03-22 14:00:36 +08:00

chore: temporarily disable spell checking for MacOS

This commit is contained in:
sudden6 2019-03-16 10:42:29 +01:00
parent e489168775
commit a3f7732db2
No known key found for this signature in database
GPG Key ID: 279509B499E032B9

View File

@ -173,7 +173,7 @@ install() {
# verbose so that build output is shown, otherwise qt5 build has no output for >10 mins
# and is killed by Travis CI
brew install --verbose ffmpeg libexif qrencode qt5 sqlcipher openal-soft kf5-sonnet
brew install --verbose ffmpeg libexif qrencode qt5 sqlcipher openal-soft #kf5-sonnet
fcho "Cloning filter_audio ... "
git clone --branch v0.0.1 --depth=1 https://github.com/irungentoo/filter_audio "$FILTERAUIO_DIR"
@ -236,7 +236,7 @@ build() {
fcho "Now working in ${PWD}"
fcho "Starting cmake ..."
export CMAKE_PREFIX_PATH=$(brew --prefix qt5)
cmake -H$QTOX_DIR -B. -DUPDATE_CHECK=ON
cmake -H$QTOX_DIR -B. -DUPDATE_CHECK=ON -DSPELL_CHECK=OFF
make -j$(sysctl -n hw.ncpu)
}