Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mumble-voip/mumble.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan Klass <kissaki@posteo.de>2019-03-17 02:56:33 +0300
committerJan Klass <kissaki@posteo.de>2019-03-17 02:56:33 +0300
commitbcf47046c274df056db9a97c10e881851fc741e2 (patch)
tree88433dc24d8d7c4f919347133ace0946142c6e61 /src/murmur/murmur.pro
parent1ee050a6a99342a50f7a337f27e1eeb215b5dd8f (diff)
Add missing advapi32 library reference in server project
win10DisplayableVersion in OSInfo.cpp makes use of the registry to determine a user displayable windows version string. This was introduced in 88e664710dd375dc0be42a30dc266efa5833bb4c. The registry functions used are in the Windows API advapi32 library. This file was not declared for linkage yet, which leads to a linker error.
Diffstat (limited to 'src/murmur/murmur.pro')
-rw-r--r--src/murmur/murmur.pro2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/murmur/murmur.pro b/src/murmur/murmur.pro
index 026519823..4fdceb5bc 100644
--- a/src/murmur/murmur.pro
+++ b/src/murmur/murmur.pro
@@ -43,7 +43,7 @@ win32 {
RESOURCES *= murmur.qrc
SOURCES *= Tray.cpp About.cpp
HEADERS *= Tray.h About.h
- LIBS *= -luser32
+ LIBS *= -luser32 -ladvapi32
win32-msvc* {
QMAKE_POST_LINK = $$QMAKE_POST_LINK$$escape_expand(\\n\\t)$$quote(mt.exe -nologo -updateresource:$(DESTDIR_TARGET);1 -manifest ../mumble/mumble.appcompat.manifest)
}