~ubuntu-branches/debian/experimental/kopete/experimental

« back to all changes in this revision

Viewing changes to protocols/jabber/googletalk/libjingle/talk/examples/peerconnection/peerconnection.scons

  • Committer: Package Import Robot
  • Author(s): Maximiliano Curia
  • Date: 2015-02-24 11:32:57 UTC
  • mfrom: (1.1.41 vivid)
  • Revision ID: package-import@ubuntu.com-20150224113257-gnupg4v7lzz18ij0
Tags: 4:14.12.2-1
* New upstream release (14.12.2).
* Bump Standards-Version to 3.9.6, no changes needed.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# -*- Python -*-
2
 
import talk
3
 
 
4
 
Import('env')
5
 
 
6
 
if env.Bit('have_webrtc_voice') and env.Bit('have_webrtc_video'):
7
 
  talk.App(
8
 
    env,
9
 
    name = 'peerconnection_client',
10
 
    # TODO: Build peerconnection_client on mac.
11
 
    libs = [
12
 
      'base',
13
 
      'expat',
14
 
      'json',
15
 
      'p2p',
16
 
      'peerconnection',
17
 
      'phone',
18
 
      'srtp',
19
 
      'xmllite',
20
 
      'xmpp',
21
 
      'yuvscaler',
22
 
    ],
23
 
    win_srcs = [
24
 
      'client/conductor.cc',
25
 
      'client/defaults.cc',
26
 
      'client/main.cc',
27
 
      'client/main_wnd.cc',
28
 
      'client/peer_connection_client.cc',
29
 
    ],
30
 
    posix_libs = [
31
 
      'crypto',
32
 
      'securetunnel',
33
 
      'ssl',
34
 
    ],
35
 
    lin_srcs = [
36
 
      'client/conductor.cc',
37
 
      'client/defaults.cc',
38
 
      'client/peer_connection_client.cc',
39
 
      'client/linux/main.cc',
40
 
      'client/linux/main_wnd.cc',
41
 
    ],
42
 
    lin_packages = [
43
 
      'gtk+-2.0',
44
 
    ],
45
 
    lin_libs = [
46
 
      'sound',
47
 
    ],
48
 
    win_link_flags = [
49
 
      ('', '/nodefaultlib:libcmt')[env.Bit('debug')],
50
 
    ],
51
 
  )
52
 
 
53
 
  talk.App(
54
 
    env,
55
 
    name = 'peerconnection_server',
56
 
    srcs = [
57
 
      'server/data_socket.cc',
58
 
      'server/main.cc',
59
 
      'server/peer_channel.cc',
60
 
      'server/utils.cc',
61
 
    ],
62
 
  )