mirror of
https://bitbucket.org/smil3y/katie.git
synced 2025-02-24 19:02:59 +00:00
24 lines
645 B
Text
24 lines
645 B
Text
contains(QT_CONFIG, reduce_exports):CONFIG += hide_symbols
|
|
unix:contains(QT_CONFIG, reduce_relocations):CONFIG += bsymbolic_functions
|
|
|
|
mac {
|
|
CONFIG += explicitlib
|
|
macx-g++ {
|
|
QMAKE_CFLAGS += -fconstant-cfstrings
|
|
QMAKE_CXXFLAGS += -fconstant-cfstrings
|
|
}
|
|
}
|
|
|
|
win32-borland {
|
|
mng:QMAKE_CFLAGS_WARN_ON += -w-par
|
|
mng:QMAKE_CXXFLAGS_WARN_ON += -w-par
|
|
# Keep the size of the .tds file for the Qt library smaller than
|
|
# 34 Mbytes to avoid linking problems
|
|
QMAKE_CFLAGS_DEBUG += -vi -y-
|
|
QMAKE_CXXFLAGS_DEBUG += -vi -y-
|
|
}
|
|
|
|
aix-g++* {
|
|
QMAKE_CFLAGS += -mminimal-toc
|
|
QMAKE_CXXFLAGS += -mminimal-toc
|
|
}
|