diff options
author | Thiago Macieira <thiago.macieira@nokia.com> | 2010-03-21 08:29:07 (GMT) |
---|---|---|
committer | Thiago Macieira <thiago.macieira@nokia.com> | 2010-03-21 08:29:27 (GMT) |
commit | 05500482c4b7f810bd4c073739bdedf0b8783738 (patch) | |
tree | 3eb21ea4edb701737e35f00e3d7873c0ee6272e1 /tests/auto/qwidget | |
parent | 59f1e6b6ac569ae50ec657795454e4910aa0075f (diff) | |
download | Qt-05500482c4b7f810bd4c073739bdedf0b8783738.zip Qt-05500482c4b7f810bd4c073739bdedf0b8783738.tar.gz Qt-05500482c4b7f810bd4c073739bdedf0b8783738.tar.bz2 |
Autotests: if you use X11 libs, you must link to X11 libs explicitly.
Solaris linker complains if you don't. Plus it's the right
thing to do
Diffstat (limited to 'tests/auto/qwidget')
-rw-r--r-- | tests/auto/qwidget/qwidget.pro | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/auto/qwidget/qwidget.pro b/tests/auto/qwidget/qwidget.pro index 61db2ee..e39431b 100644 --- a/tests/auto/qwidget/qwidget.pro +++ b/tests/auto/qwidget/qwidget.pro @@ -14,6 +14,10 @@ mac { OBJECTIVE_SOURCES += tst_qwidget_mac_helpers.mm } +x11 { + LIBS += $$QMAKE_LIBS_X11 +} + symbian { INCLUDEPATH += $$MW_LAYER_SYSTEMINCLUDE LIBS += -leikcore -lcone -leikcoctl |