diff options
author | Rohan McGovern <rohan.mcgovern@nokia.com> | 2011-07-01 13:26:21 +1000 |
---|---|---|
committer | Rohan McGovern <rohan.mcgovern@nokia.com> | 2011-07-01 13:26:21 +1000 |
commit | fcd4848765e19a25b09594ea027f31ba4390d23e (patch) | |
tree | a66b5559161cfca9becd954bb43415daa699f25e /src/assistant | |
parent | 1bb20dcd9e30d62f51516098c47344e192308038 (diff) | |
download | qttools-fcd4848765e19a25b09594ea027f31ba4390d23e.tar.gz |
Fixed various linker errors due to missing MODULE.
If MODULE is not explicitly set when building a module, the build system
will guess the module name from the .pro file's basename. This guess is
incorrect for these projects, so set MODULE to the correct value.
Diffstat (limited to 'src/assistant')
-rw-r--r-- | src/assistant/lib/fulltextsearch/fulltextsearch.pro | 2 | ||||
-rw-r--r-- | src/assistant/lib/lib.pro | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/src/assistant/lib/fulltextsearch/fulltextsearch.pro b/src/assistant/lib/fulltextsearch/fulltextsearch.pro index 8733e57d7..b212154a5 100644 --- a/src/assistant/lib/fulltextsearch/fulltextsearch.pro +++ b/src/assistant/lib/fulltextsearch/fulltextsearch.pro @@ -1,3 +1,5 @@ +MODULE = clucene + load(qt_module) QMAKE_TARGET_PRODUCT = QtCLucene diff --git a/src/assistant/lib/lib.pro b/src/assistant/lib/lib.pro index f524aaa61..13878208b 100644 --- a/src/assistant/lib/lib.pro +++ b/src/assistant/lib/lib.pro @@ -1,3 +1,5 @@ +MODULE = help + load(qt_module) QT += sql \ |