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_window | |
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_window')
-rw-r--r-- | tests/auto/qwidget_window/qwidget_window.pro | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/auto/qwidget_window/qwidget_window.pro b/tests/auto/qwidget_window/qwidget_window.pro index e375fab..df7d687 100644 --- a/tests/auto/qwidget_window/qwidget_window.pro +++ b/tests/auto/qwidget_window/qwidget_window.pro @@ -1,4 +1,7 @@ load(qttest_p4) SOURCES += tst_qwidget_window.cpp +x11 { + LIBS += $$QMAKE_LIBS_X11 +} |