mirror of
https://github.com/mumble-voip/mumble.git
synced 2025-10-26 11:19:16 +00:00
24 lines
532 B
Prolog
24 lines
532 B
Prolog
# Tiny stub program that we splice together into our
|
|
# main app bundle for architectures that we don't support.
|
|
|
|
include(../../compiler.pri)
|
|
include(../common.pri)
|
|
|
|
TEMPLATE = app
|
|
CONFIG -= qt app_bundle x86_64
|
|
CONFIG += debug_and_release ppc x86
|
|
|
|
TARGET = Mumble.compat
|
|
SOURCES = compat.m
|
|
QMAKE_LFLAGS += -framework ApplicationServices -framework Cocoa -framework AppKit
|
|
|
|
CONFIG(debug, debug|release) {
|
|
DESTDIR = ../../debug
|
|
}
|
|
|
|
CONFIG(release, debug|release) {
|
|
DESTDIR = ../../release
|
|
}
|
|
|
|
include(../../symbols.pri)
|