Add missing include library to prevent link failure
authorkb <k.blammo@gmail.com>
Sun, 13 May 2012 21:03:06 +0000 (23:03 +0200)
committerQt by Nokia <qt-info@nokia.com>
Mon, 14 May 2012 07:14:05 +0000 (09:14 +0200)
When cross-compiling the uuid library needs to be included
explicitly so the linker has access to _IID_IUnknown et al.

Change-Id: I713af426357603c08eef55857be20105e5aa6eba
Reviewed-by: Jan-Arve Sæther <jan-arve.saether@nokia.com>
src/plugins/platforms/windows/accessible/accessible.pri

index 1a409cb..08a37a4 100644 (file)
@@ -14,3 +14,4 @@ HEADERS += \
     include(../../../../3rdparty/iaccessible2/iaccessible2.pri)
 }
 
+win32-g++*: LIBS *= -luuid
\ No newline at end of file