mirror of
https://github.com/mumble-voip/mumble.git
synced 2025-10-26 11:19:16 +00:00
The murmur_pch.h file which most tests use -- either directly, or indrectly -- depends on being able to include OpenSSL headers. Some of our tests did not include(qmake/openssl.pri), which meant that those tests would fail to build in CONFIG(no-pch), such as on macOS. This commit works around that issue by depending on OpenSSL for all tests.
11 lines
390 B
Prolog
11 lines
390 B
Prolog
# Copyright 2005-2017 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(../test.pri)
|
|
|
|
TARGET = TestCryptographicHash
|
|
SOURCES = TestCryptographicHash.cpp CryptographicHash.cpp
|
|
HEADERS = CryptographicHash.h
|