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:
authorRobert Adam <dev@robert-adam.de>2020-09-01 20:15:35 +0300
committerRobert Adam <dev@robert-adam.de>2020-09-02 09:29:45 +0300
commit34c602c85bd4e37373949c6709519c5a017b3e3d (patch)
tree048eac88061ec630652342130f3369fb10491a82 /g15helper
parent756a35e334257f6fe4d17c65d1e02093464b4291 (diff)
BUILD(qmake): Remove
This commit removes all qmake-related build-files from the system. We have now migrated to cmake and are no longer maintaining qmake anyways and therefore there is no reason to keep it. Removing it also clearly states to any potential user/programmer that this project is no longer intended to be compiled with qmake. Given that the .pri files no longer exist, the mumble-version.py script had to be adapted to read the version from the CMakeLists.txt file instead. Furthermore a few of the submodules support cmake natively and therefore we no longer need the src/buid-directory approach in order to build them. The respective build dirs have been removed and the src-dirs have been renamed.
Diffstat (limited to 'g15helper')
-rw-r--r--g15helper/g15helper.pro101
1 files changed, 0 insertions, 101 deletions
diff --git a/g15helper/g15helper.pro b/g15helper/g15helper.pro
deleted file mode 100644
index 07402695b..000000000
--- a/g15helper/g15helper.pro
+++ /dev/null
@@ -1,101 +0,0 @@
-# Copyright 2005-2020 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>.
-
-# Build rules for G15 helper daemon
-
-win32:!CONFIG(g15-emulator) {
- CONFIG += force-x86-toolchain
-}
-include (../qmake/compiler.pri)
-
-TEMPLATE = app
-CONFIG *= debug_and_release warn_on
-TARGET = mumble-g15-helper
-
-HEADERS = g15helper.h
-
-# The g15helper utility can be built in two modes:
-#
-# - Native. This is what will be built if you're
-# on Windows or macOS by default.
-#
-# - Emulator. This can be enabled by using the
-# CONFIG(g15-emulator) when invoking qmake.
-# Instead of building a g15helper that talks
-# to the G15 LCD using the Logitech provided
-# library, we build a small program that
-# emulates the LCD display in an on-screen
-# window. This is useful for debugging
-# Mumble's LCD/G15 support.
-CONFIG(g15-emulator) {
- QT *= core gui
- isEqual(QT_MAJOR_VERSION, 5) {
- QT *= widgets
- }
-
- SOURCES *= g15helper_emu.cpp
- HEADERS *= g15helper_emu.h
-
- win32 {
- RC_FILE = g15helper.rc
-
- win32-msvc* {
- QMAKE_POST_LINK = $$QMAKE_POST_LINK$$escape_expand(\\n\\t)$$quote(mt.exe -nologo -updateresource:$(DESTDIR_TARGET);1 -manifest ../src/mumble/mumble.appcompat.manifest)
- }
- }
-} else {
- CONFIG -= qt
-
- win32 {
- SOURCES = g15helper.c
- RC_FILE = g15helper.rc
- LIBS *= -llgLcd -ladvapi32 -lshell32 -luser32
- QMAKE_LIBDIR *= "$$G15SDK_PATH/Lib/x86"
- INCLUDEPATH *= "$$G15SDK_PATH/Src"
- DEFINES *= WIN32
-
- win32-msvc* {
- QMAKE_POST_LINK = $$QMAKE_POST_LINK$$escape_expand(\\n\\t)$$quote(mt.exe -nologo -updateresource:$(DESTDIR_TARGET);1 -manifest ../src/mumble/mumble.appcompat.manifest)
- }
-
- CONFIG(release, debug|release) {
- QMAKE_CFLAGS_RELEASE -= -MD
- QMAKE_CFLAGS_RELEASE *= -MT
- QMAKE_CXXFLAGS_RELEASE -= -MD
- QMAKE_CXXFLAGS_RELEASE *= -MT
- }
- CONFIG(debug, debug|release) {
- QMAKE_CFLAGS_DEBUG -= -MDd
- QMAKE_CFLAGS_DEBUG *= -MTd
- QMAKE_CXXFLAGS_DEBUG -= -MDd
- QMAKE_CXXFLAGS_DEBUG *= -MTd
- }
- }
-
- macx {
- CONFIG -= app_bundle
- isEqual(QT_MAJOR_VERSION, 5) {
- QMAKE_CFLAGS += -arch i386
- QMAKE_OBJECTIVE_CFLAGS += -arch i386
- QMAKE_CXXFLAGS += -arch i386
- QMAKE_LFLAGS += -arch i386
- } else {
- CONFIG -= x86_64
- CONFIG += x86
- }
- SOURCES = g15helper_macx.c
- LIBS *= -llgLcd
- QMAKE_LIBDIR *= $$(MUMBLE_PREFIX)/../LCDSDK/lib/
- INCLUDEPATH *= $$(MUMBLE_PREFIX)/../LCDSDK/Src/
- QMAKE_LFLAGS += -framework CoreFoundation -sectcreate __TEXT __info_plist g15helper.plist
- DEFINES *= APPLE
- }
-}
-
-CONFIG(debug, debug|release) {
- DEFINES *= USE_LOGFILE
-}
-
-include(../qmake/symbols.pri)