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:
authorThorvald Natvig <slicer@users.sourceforge.net>2009-11-11 16:22:12 +0300
committerThorvald Natvig <slicer@users.sourceforge.net>2009-11-11 16:22:12 +0300
commitf3e9ed776e023671656fe7527c4ab35c5ae271cb (patch)
tree7dd70dc7a10f49fa59b8eccfe0f3fe7b75d83f99 /main.pro
parent66c2261cb521f62dcbd79251cfdf2370fd058080 (diff)
Automatically use system CELT if it's >= 0.7.0
Diffstat (limited to 'main.pro')
-rw-r--r--main.pro3
1 files changed, 3 insertions, 0 deletions
diff --git a/main.pro b/main.pro
index f85a27995..49cecb60c 100644
--- a/main.pro
+++ b/main.pro
@@ -5,6 +5,9 @@ CONFIG *= ordered debug_and_release
unix:!CONFIG(bundled-speex):system(pkg-config --atleast-version=1.2 speexdsp) {
CONFIG *= no-bundled-speex
}
+ unix:!CONFIG(bundled-celt):system(pkg-config --atleast-version=0.7.0 celt) {
+ CONFIG *= no-bundled-celt
+ }
!CONFIG(no-bundled-speex) {
SUBDIRS *= speexbuild
}