mirror of
https://github.com/mumble-voip/mumble.git
synced 2025-10-26 11:19:16 +00:00
First part of UDP support. git-svn-id: https://mumble.svn.sourceforge.net/svnroot/mumble/trunk@164 05730e5d-ab1b-0410-a4ac-84af385074fa
26 lines
690 B
Plaintext
26 lines
690 B
Plaintext
VERSION = 0.3.2
|
|
DIST = LICENSE INSTALL README CHANGES mumble.pro murmur.pro mumble.pri mumble.ico
|
|
CONFIG += qt thread debug_and_release warn_on
|
|
|
|
QMAKE_CFLAGS += -Wshadow -Woverloaded-virtual -Wold-style-cast -Wconversion -Wsign-compare
|
|
QMAKE_CXXFLAGS += -Wshadow -Woverloaded-virtual -Wold-style-cast -Wconversion -Wsign-compare
|
|
|
|
CONFIG(debug, debug|release) {
|
|
CONFIG += console
|
|
LIBS += -Ldebug
|
|
}
|
|
|
|
CONFIG(release, debug|release) {
|
|
LIBS += -Lrelease
|
|
}
|
|
|
|
# To use external profiling tools on the release builds, but
|
|
# we need the debug symbols.
|
|
|
|
CONFIG(symbols) {
|
|
QMAKE_CFLAGS_RELEASE += -g
|
|
QMAKE_CXXFLAGS_RELEASE += -g
|
|
QMAKE_LFLAGS += -g
|
|
QMAKE_LFLAGS_RELEASE -= -Wl,-s
|
|
}
|
|
|