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:
authorMikkel Krautz <mikkel@krautz.dk>2016-06-11 13:03:17 +0300
committerMikkel Krautz <mikkel@krautz.dk>2016-06-11 13:03:17 +0300
commit2550c4fbc69f37dee3bd915a98be9ab45446aef7 (patch)
tree48df8d8b3463f2da8a71a8f8a86b2271bca747e3 /uname.pri
parent04b2635df3fb227e155b424edbe9bf479589b80c (diff)
uname.pri: introduce uname.pri, and use it in various .pri files.
Diffstat (limited to 'uname.pri')
-rw-r--r--uname.pri10
1 files changed, 10 insertions, 0 deletions
diff --git a/uname.pri b/uname.pri
new file mode 100644
index 000000000..f686c7f2e
--- /dev/null
+++ b/uname.pri
@@ -0,0 +1,10 @@
+# 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>.
+
+UNAME=
+
+unix {
+ UNAME=$$system(uname -s)
+}