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:
authordavidebeatrici <davidebeatrici@gmail.com>2018-02-18 22:20:04 +0300
committerdavidebeatrici <davidebeatrici@gmail.com>2018-02-19 01:56:34 +0300
commit5477e8f9998e06fd485d595a4d9da216b4c9f82c (patch)
tree06b5b1b8bd6f8e89ef1199d2282b486cb97d6933 /overlay/overlay_exe
parentb0974d75f24b94daedfce868bde294feb5cb4a4a (diff)
overlay: set custom build directory in relation to the global one
Diffstat (limited to 'overlay/overlay_exe')
-rw-r--r--overlay/overlay_exe/overlay_exe-shared.pro3
-rw-r--r--overlay/overlay_exe/overlay_exe.pro2
2 files changed, 2 insertions, 3 deletions
diff --git a/overlay/overlay_exe/overlay_exe-shared.pro b/overlay/overlay_exe/overlay_exe-shared.pro
index 9525bf4af..284c30e32 100644
--- a/overlay/overlay_exe/overlay_exe-shared.pro
+++ b/overlay/overlay_exe/overlay_exe-shared.pro
@@ -8,7 +8,6 @@ include(../../qmake/compiler.pri)
TEMPLATE = app
CONFIG -= qt
CONFIG += debug_and_release
-TARGET = mumble_ol_helper
win32 {
DEFINES += WIN32 _WIN32
@@ -32,12 +31,10 @@ QMAKE_POST_LINK = $$QMAKE_POST_LINK$$escape_expand(\\n\\t)$$quote(mt.exe -nologo
CONFIG(debug, debug|release) {
CONFIG += console
DEFINES *= DEBUG
- DESTDIR = ../../debug
}
CONFIG(release, debug|release) {
DEFINES *= NDEBUG
- DESTDIR = ../../release
}
include(../../qmake/symbols.pri)
diff --git a/overlay/overlay_exe/overlay_exe.pro b/overlay/overlay_exe/overlay_exe.pro
index 395bf0109..8cd4f465a 100644
--- a/overlay/overlay_exe/overlay_exe.pro
+++ b/overlay/overlay_exe/overlay_exe.pro
@@ -4,4 +4,6 @@
# Mumble source tree or at <https://www.mumble.info/LICENSE>.
CONFIG += force-x86-toolchain
+TARGET = mumble_ol_helper
+
include(overlay_exe-shared.pro)