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/guiapplauncher | |
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/guiapplauncher')
-rw-r--r-- | tests/auto/guiapplauncher/guiapplauncher.pro | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/auto/guiapplauncher/guiapplauncher.pro b/tests/auto/guiapplauncher/guiapplauncher.pro index 2f81061..30f5cf4 100644 --- a/tests/auto/guiapplauncher/guiapplauncher.pro +++ b/tests/auto/guiapplauncher/guiapplauncher.pro @@ -16,3 +16,6 @@ HEADERS += windowmanager.h # process enumeration,etc. win32:LIBS+=-luser32 +x11 { + LIBS += $$QMAKE_LIBS_X11 +} |