2013-02-19 16:54:54 +00:00
|
|
|
versionsym = QT_VERSION_STR
|
|
|
|
|
Clean up qt-cpp-defines.qdocconf
Cpp.ignoretokens, Cpp.ignoredirectives, falsehoods are not
used anymore by clang based qdoc.
Most defines are not needed, either, because clang based qdoc
will get these defined by scanning the normal headers. And QDOC,
Q_CLANG_QDOC is actually set by qdoc itself.
What's left is Q_GUI_LIB, Q_WIDGETS_LIB, which is used in headers
modules to make some API conditionally available. Finally, there's
QT_KEYPAD_NAVIGATION, which seems to be a Qt 3 thing, but still
some documentation depending on it ;)
Pick-to: 6.4
Change-Id: Ib9cf0debac8d569cc21271087168a46c0f8635ca
Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
Reviewed-by: Paul Wicking <paul.wicking@qt.io>
2022-07-13 17:36:24 +00:00
|
|
|
defines += QT_GUI_LIB \
|
|
|
|
QT_WIDGETS_LIB \
|
|
|
|
QT_KEYPAD_NAVIGATION
|
2016-09-22 07:48:51 +00:00
|
|
|
|
|
|
|
excludefiles += \
|
|
|
|
"*_posix.cpp" \
|
|
|
|
"*_android.cpp" \
|
|
|
|
"*_win.cpp" \
|
|
|
|
"*_icu.cpp" \
|
|
|
|
"*_msvc.cpp" \
|
|
|
|
"*_wince.cpp" \
|
|
|
|
"*_winrt.cpp" \
|
|
|
|
"*_mac.cpp" \
|
|
|
|
"*_macx.cpp" \
|
|
|
|
"*_unix.cpp" \
|
|
|
|
"*_udev.cpp" \
|
|
|
|
"*_vxworks.cpp" \
|
2017-06-08 12:27:01 +00:00
|
|
|
"*_darwin.cpp"
|