File: main.pro

package info (click to toggle)
mumble 1.2.2-6%2Bsqueeze2
  • links: PTS, VCS
  • area: main
  • in suites: squeeze-lts
  • size: 22,756 kB
  • ctags: 10,763
  • sloc: cpp: 56,485; ansic: 30,239; perl: 710; sh: 641; objc: 579; php: 202; makefile: 188
file content (47 lines) | stat: -rw-r--r-- 897 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
TEMPLATE = subdirs
CONFIG *= ordered debug_and_release

!CONFIG(no-client) {
  unix:!CONFIG(bundled-speex):system(pkg-config --atleast-version=1.2 speexdsp) {
	CONFIG *= no-bundled-speex
  }
  unix:!CONFIG(bundled-celt):system(pkg-config --atleast-version=0.7.0 celt) {
	CONFIG *= no-bundled-celt
  }
  !CONFIG(no-bundled-speex) {
    SUBDIRS *= speexbuild
  }
  !CONFIG(no-bundled-celt) {
    SUBDIRS *= celt-0.7.0-build
  }
  !CONFIG(no-11x) {
    SUBDIRS *= src/mumble11x
  }
  SUBDIRS *= src/mumble plugins

  win32 {
    SUBDIRS *= overlay
    !CONFIG(no-g15) {
      SUBDIRS *= g15helper
    }
  }

  unix:!macx:!CONFIG(no-overlay) {
    SUBDIRS *= overlay_gl
  }

  macx {
    SUBDIRS *= overlay_macx
    !CONFIG(no-g15) {
      SUBDIRS *= g15helper
    }
  }
}

!CONFIG(no-server) {
  SUBDIRS *= src/murmur
}

DIST=LICENSE INSTALL README README.Linux CHANGES

include(scripts/scripts.pro)