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-02-13 17:29:25 +0300
committerThorvald Natvig <slicer@users.sourceforge.net>2009-02-13 17:29:25 +0300
commitdd822709822c66f73aa9f65469f2620be08e2776 (patch)
treea092f711ffb7131db75255e4f8ec400eb2aab2a8 /overlay_gl
parent6fc929eb5fd1ec69cb2bf49de591c5fd4125058b (diff)
Add support for building 32-bit library on amd64
git-svn-id: https://mumble.svn.sourceforge.net/svnroot/mumble/trunk@1527 05730e5d-ab1b-0410-a4ac-84af385074fa
Diffstat (limited to 'overlay_gl')
-rw-r--r--overlay_gl/overlay_gl.pro10
1 files changed, 5 insertions, 5 deletions
diff --git a/overlay_gl/overlay_gl.pro b/overlay_gl/overlay_gl.pro
index 1774c9a6e..055e43086 100644
--- a/overlay_gl/overlay_gl.pro
+++ b/overlay_gl/overlay_gl.pro
@@ -4,12 +4,12 @@
TEMPLATE = lib
CONFIG -= qt
CONFIG *= debug_and_release
-TARGET = mumble
+TARGET = mumble$(TARGET_ADD)
VERSION = 1.1.8
SOURCES = overlay.c
LIBS *= -lrt -ldl
-QMAKE_CFLAGS *= -fvisibility=hidden
-QMAKE_LFLAGS -= -Wl,--no-undefined
+QMAKE_CFLAGS *= -fvisibility=hidden $(CFLAGS_ADD)
+QMAKE_LFLAGS -= -Wl,--no-undefined $(LFLAGS_ADD)
equals(QMAKE_LINK,g++) {
message(Overriding linker)
QMAKE_LINK = gcc
@@ -17,9 +17,9 @@ equals(QMAKE_LINK,g++) {
}
CONFIG(debug, debug|release) {
- DESTDIR = ../debug
+ DESTDIR = ../debug$(DESTDIR_ADD)
}
CONFIG(release, debug|release) {
- DESTDIR = ../release
+ DESTDIR = ../release$(DESTDIR_ADD)
}