1# Copyright 2005-2019 The Mumble Developers. All rights reserved.
2# Use of this source code is governed by a BSD-style license
3# that can be found in the LICENSE file at the root of the
4# Mumble source tree or at <https://www.mumble.info/LICENSE>.
5
6include(../plugins.pri)
7
8TARGET = link
9
10win32 {
11  SOURCES = link.cpp
12  LIBS += -luser32
13}
14
15unix {
16  SOURCES = link-posix.cpp
17
18  linux* {
19    LIBS          += -lrt
20  }
21}
22