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:
authorStefan Hacker <dd0t@users.sourceforge.net>2010-10-22 00:03:33 +0400
committerStefan Hacker <dd0t@users.sourceforge.net>2010-10-22 00:51:27 +0400
commitd84fa5d7fcbacd5ad4a0b547d0565de23f5bad8f (patch)
tree6a0bdc0448b72eeff6929522f77ba150ef5b8743 /winpaths_default.pri
parent99ddd8f9d315af4162b132f30387c90ed366f92f (diff)
Add a winpaths_default.pri to contain all windows dependency paths and make them easily overridable by a custom winpaths_custom.pri
Diffstat (limited to 'winpaths_default.pri')
-rw-r--r--winpaths_default.pri24
1 files changed, 24 insertions, 0 deletions
diff --git a/winpaths_default.pri b/winpaths_default.pri
new file mode 100644
index 000000000..38762a917
--- /dev/null
+++ b/winpaths_default.pri
@@ -0,0 +1,24 @@
+# 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 = /dev/Ice
+PROTOBUF_PATH = /dev/protobuf-2.3.0
+OPENSSL_PATH = /dev/OpenSSL
+LIBSNDFILE_PATH = /dev/libsndfile
+BOOST_PATH = /dev/Boost
+VLD_PATH = /dev/vld
+BONJOUR_PATH = /dev/Bonjour
+ASIO_PATH = /dev/asio
+G15_PATH = /dev/G15SDK
+LIBOGG_PATH = /dev/libogg
+
+# Include custom file if it exists
+exists(winpaths_custom.pri) {
+ include(winpaths_custom.pri)
+} \ No newline at end of file