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:
authorDavide Beatrici <davidebeatrici@gmail.com>2017-03-05 15:20:12 +0300
committerDavide Beatrici <davidebeatrici@gmail.com>2017-03-05 17:48:16 +0300
commitd04995899a6c9fbd0b738c2aa2acc2499e83bfd9 (patch)
tree325a77aff33fa5136f265c97776bcb05881efc0d /qmake/winpaths_default.pri
parent03908a0162540e3dfcdc2dc2102ab3b32cd08a88 (diff)
Move .pri files and "toolchain" folder in "qmake"
Diffstat (limited to 'qmake/winpaths_default.pri')
-rw-r--r--qmake/winpaths_default.pri36
1 files changed, 36 insertions, 0 deletions
diff --git a/qmake/winpaths_default.pri b/qmake/winpaths_default.pri
new file mode 100644
index 000000000..d4d3d9424
--- /dev/null
+++ b/qmake/winpaths_default.pri
@@ -0,0 +1,36 @@
+# 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>.
+
+# winpaths_default.pri
+#
+# This file contains the default paths for Windows dependencies.
+# If you want to customize them do NOT CHANGE THIS FILE but instead
+# create a winpaths_custom.pri file in this directory and overwrite
+# the variables you need to customize. Do NOT COMMIT your custom file
+# to the repository.
+#
+
+ICE_PATH = %PROGPATH%/ZeroC/Ice-3.4.1
+BZIP2_PATH = /dev/bzip2
+PROTOBUF_PATH = /dev/protobuf-2.4.1
+OPENSSL_PATH = /dev/OpenSSL
+LIBSNDFILE_PATH = %PROGPATH%/Mega-Nerd/libsndfile
+BOOST_PATH = /dev/Boost
+VLD_PATH = %PROGPATH%/Visual Leak Detector
+BONJOUR_PATH = %PROGRAMFILES%/Bonjour SDK
+ASIO_PATH = /dev/asio
+G15SDK_PATH = /dev/G15SDK/LCDSDK
+
+# If we're building in win32-static, include
+# winpaths_static.pri to override the defaults
+# above.
+CONFIG(static) {
+ include(winpaths_static.pri)
+}
+
+# Include custom file if it exists
+exists(winpaths_custom.pri) {
+ include(winpaths_custom.pri)
+}