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
path: root/macx
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 /macx
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 'macx')
-rw-r--r--macx/common.pri11
-rw-r--r--macx/macx.pro9
-rw-r--r--macx/osax/osax.pro37
3 files changed, 0 insertions, 57 deletions
diff --git a/macx/common.pri b/macx/common.pri
deleted file mode 100644
index 321d9edf7..000000000
--- a/macx/common.pri
+++ /dev/null
@@ -1,11 +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>.
-
-# Common OSX overlay settings.
-
-VERSION = 1.4.0
-
-DEFINES *= VERSION=\\\"$$VERSION\\\"
-
diff --git a/macx/macx.pro b/macx/macx.pro
deleted file mode 100644
index 565f22bca..000000000
--- a/macx/macx.pro
+++ /dev/null
@@ -1,9 +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>.
-
-TEMPLATE = subdirs
-
-CONFIG += debug_and_release
-SUBDIRS = osax
diff --git a/macx/osax/osax.pro b/macx/osax/osax.pro
deleted file mode 100644
index e2a60c162..000000000
--- a/macx/osax/osax.pro
+++ /dev/null
@@ -1,37 +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>.
-
-# Mumble Overlay scripting addition
-# (for injection into running processes)
-
-include(../../qmake/compiler.pri)
-
-CONFIG += x86_64 debug_and_release
-CONFIG(universal) {
- CONFIG += ppc
-}
-
-TEMPLATE = lib
-CONFIG += plugin plugin_bundle
-CONFIG -= gui qt
-
-CONFIG(static) {
- CONFIG -= static
-}
-
-TARGET = MumbleOverlay
-QMAKE_INFO_PLIST = osax.plist
-
-QMAKE_LFLAGS = -framework Foundation -framework Cocoa
-QMAKE_BUNDLE_EXTENSION = .osax
-QMAKE_LFLAGS_PLUGIN = -bundle
-
-SDEF.files = MumbleOverlay.sdef
-SDEF.path = Contents/Resources
-QMAKE_BUNDLE_DATA += SDEF
-
-OBJECTIVE_SOURCES = osax.m
-
-include(../../qmake/symbols.pri)