mumble/pkgconfig.pri

27 lines
729 B
Plaintext

# Copyright 2005-2016 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>.
# must_pkgconfig(pkg)
#
# This function checks if the passed-in package
# name is available on the system. If it is,
# it is added to the PKGCONFIG variable.
# If not, exit qmake with a fatal error stating
# that the package could not be found.
#
# Example usage:
#
# must_pkgconfig(openssl)
#
defineTest(must_pkgconfig) {
pkg = $$1
system(pkg-config --exists $$pkg) {
PKGCONFIG *= $$pkg
export(PKGCONFIG)
} else {
error(pkg-config could not find package $$pkg)
}
}