~ubuntu-branches/ubuntu/raring/mumble/raring

« back to all changes in this revision

Viewing changes to macx/osax/osax.pro

  • Committer: Bazaar Package Importer
  • Author(s): Thorvald Natvig, Patrick Matthäi, Thorvald Natvig
  • Date: 2011-02-19 22:58:58 UTC
  • mfrom: (9.1.15 sid)
  • Revision ID: james.westby@ubuntu.com-20110219225858-0xlftrf4z1z4jt9e
Tags: 1.2.3-1
[ Patrick Matthäi ]
* Do not build with non existant libpulse-dev on hurd-i386.

[ Thorvald Natvig ]
* New upstream release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Mumble Overlay scripting addition
 
2
# (for injection into running processes)
 
3
 
 
4
include(../../compiler.pri)
 
5
 
 
6
CONFIG += x86_64 x86 ppc debug_and_release
 
7
 
 
8
TEMPLATE = lib
 
9
CONFIG += plugin plugin_bundle
 
10
CONFIG -= gui qt
 
11
 
 
12
TARGET = MumbleOverlay
 
13
QMAKE_INFO_PLIST = osax.plist
 
14
 
 
15
QMAKE_LFLAGS = -framework Foundation -framework Cocoa
 
16
QMAKE_BUNDLE_EXTENSION = .osax
 
17
QMAKE_LFLAGS_PLUGIN = -bundle
 
18
 
 
19
SDEF.files = MumbleOverlay.sdef
 
20
SDEF.path = Contents/Resources
 
21
QMAKE_BUNDLE_DATA += SDEF
 
22
 
 
23
SOURCES = osax.m
 
24
DIST = osax.plist MumbleOverlay.sdef
 
25
 
 
26
CONFIG(debug, debug|release) {
 
27
  DESTDIR       = ../../debug
 
28
}
 
29
 
 
30
CONFIG(release, debug|release) {
 
31
  DESTDIR       = ../../release
 
32
}
 
33
 
 
34
include(../../symbols.pri)