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

openssl.pri « qmake - github.com/mumble-voip/mumble.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 478109dcb66b60c8b287548d168cc296739ec430 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# Copyright 2005-2019 The Mumble Developers. All rights reserved.
# Use of this source code is governed by a BSD-style license
# that can be found in the LICENSE file at the root of the
# Mumble source tree or at <https://www.mumble.info/LICENSE>.

include(pkgconfig.pri)

# Include this file to portably link
# against OpenSSL.
#
# It requires compiler.pri to be included
# for $$OPENSSL_PATH, etc. to work on win32.
# This file can't include compiler.pri: it can
# only be included once per .pro file.

win32-msvc* {
	INCLUDEPATH *= "$$OPENSSL_PATH/include"
	QMAKE_LIBDIR *= "$$OPENSSL_PATH/lib"
	LIBS *= -lgdi32 -llibeay32 -lssleay32
}

win32-g++ {
	LIBS *= -lssl -lcrypto -lgdi32
}

unix {
	contains(UNAME, FreeBSD) {
		LIBS *= -lcrypto -lssl
	} else {
		CONFIG *= link_pkgconfig
		must_pkgconfig(openssl)
	}
}