Skip to content

Commit

Permalink
show message when using system libraries for hunspell/quazip
Browse files Browse the repository at this point in the history
  • Loading branch information
sunderme committed Jul 30, 2018
1 parent 3ea720a commit cc4c8d8
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions texstudio.pro
Expand Up @@ -271,6 +271,7 @@ isEmpty(USE_SYSTEM_HUNSPELL){
DEFINES += HUNSPELL_STATIC
include(src/hunspell/hunspell.pri)
} else {
message(System hunspell)
CONFIG += link_pkgconfig
PKGCONFIG += hunspell
}
Expand All @@ -286,9 +287,11 @@ isEmpty(USE_SYSTEM_QUAZIP) {
include(src/quazip/quazip/quazip.pri)
} else {
greaterThan(QT_MAJOR_VERSION, 4) { #Qt5
message(System quazip5)
isEmpty(QUAZIP_LIB): QUAZIP_LIB = -lquazip5
isEmpty(QUAZIP_INCLUDE): QUAZIP_INCLUDE = $${PREFIX}/include/quazip5
} else { #Qt4
message(System quazip)
isEmpty(QUAZIP_LIB): QUAZIP_LIB = -lquazip
isEmpty(QUAZIP_INCLUDE): QUAZIP_INCLUDE = $${PREFIX}/include/quazip
}
Expand Down

0 comments on commit cc4c8d8

Please sign in to comment.