clntcorelib
上传用户:dangjiwu
上传日期:2013-07-19
资源大小:42019k
文件大小:6k
源码类别:

Symbian

开发平台:

Visual C++

  1. # ***** BEGIN LICENSE BLOCK *****
  2. # Source last modified: $Id: clntcorelib,v 1.14.2.2 2004/07/23 06:40:52 pankajgupta Exp $
  3. # Portions Copyright (c) 1995-2004 RealNetworks, Inc. All Rights Reserved.
  4. # The contents of this file, and the files included with this file,
  5. # are subject to the current version of the RealNetworks Public
  6. # Source License (the "RPSL") available at
  7. # http://www.helixcommunity.org/content/rpsl unless you have licensed
  8. # the file under the current version of the RealNetworks Community
  9. # Source License (the "RCSL") available at
  10. # http://www.helixcommunity.org/content/rcsl, in which case the RCSL
  11. # will apply. You may also obtain the license terms directly from
  12. # RealNetworks.  You may not use this file except in compliance with
  13. # the RPSL or, if you have a valid RCSL with RealNetworks applicable
  14. # to this file, the RCSL.  Please see the applicable RPSL or RCSL for
  15. # the rights, obligations and limitations governing use of the
  16. # contents of the file.
  17. # Alternatively, the contents of this file may be used under the
  18. # terms of the GNU General Public License Version 2 or later (the
  19. # "GPL") in which case the provisions of the GPL are applicable
  20. # instead of those above. If you wish to allow use of your version of
  21. # this file only under the terms of the GPL, and not to allow others
  22. # to use your version of this file under the terms of either the RPSL
  23. # or RCSL, indicate your decision by deleting the provisions above
  24. # and replace them with the notice and other provisions required by
  25. # the GPL. If you do not delete the provisions above, a recipient may
  26. # use your version of this file under the terms of any one of the
  27. # RPSL, the RCSL or the GPL.
  28. # This file is part of the Helix DNA Technology. RealNetworks is the
  29. # developer of the Original Code and owns the copyrights in the
  30. # portions it created.
  31. # This file, and the files included with this file, is distributed
  32. # and made available on an 'AS IS' basis, WITHOUT WARRANTY OF ANY
  33. # KIND, EITHER EXPRESS OR IMPLIED, AND REALNETWORKS HEREBY DISCLAIMS
  34. # ALL SUCH WARRANTIES, INCLUDING WITHOUT LIMITATION, ANY WARRANTIES
  35. # OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, QUIET
  36. # ENJOYMENT OR NON-INFRINGEMENT.
  37. # Technology Compatibility Kit Test Suite(s) Location:
  38. #    http://www.helixcommunity.org/content/tck
  39. # Contributor(s):
  40. # ***** END LICENSE BLOCK *****
  41. UmakefileVersion(2,2)
  42. project.AddModuleIncludes("common/include",
  43.                        "common/container/pub",
  44.                        "common/util/pub",
  45.                        "common/system/pub",
  46.                        "common/dbgtool/pub",
  47.   "common/runtime/pub",
  48.   "common/fileio/pub",
  49.   "common/lang/xml/pub",
  50.   "common/netio/pub",
  51.   "protocol/transport/common/system/pub",
  52.   "protocol/transport/rtp/pub",
  53.   "protocol/common/util/pub",
  54.   "protocol/rtsp/pub",
  55.   "protocol/rtsp/include",
  56.   "protocol/pna/pub",
  57.   "protocol/sdp/pub",
  58.   "audio/include",
  59.   "video/include",
  60.   "video/colconverter/pub")
  61. project.AddIncludes("../include",
  62.     "../common/container/pub",
  63.     "../common/util/pub",
  64.     "../common/netio/pub",
  65.     "../common/system/pub",
  66.     "../audiosvc/pub",
  67.     "../videosvc/pub",
  68.     "../netwksvc/pub",
  69.     "../resource/pub")
  70. project.AddSources("buffmgr.cpp",
  71.    "corshare.cpp",
  72.    "plsnkctl.cpp",
  73.    "hxcleng.cpp",
  74.    "hxplay.cpp",
  75.    "hxsrc.cpp",
  76.    "hxstrm.cpp",
  77.    "hxcorcom.cpp",
  78.    "srcinfo.cpp",
  79.    "strminfo.cpp",
  80.    "hxbufstate.cpp",
  81.    "chxelst.cpp",
  82.    "wmbufctl.cpp",
  83.    "fbbufctl.cpp")
  84. if "HELIX_FEATURE_PLAYBACK_LOCAL" in project.defines:
  85. project.AddSources('hxflsrc.cpp')
  86. if "HELIX_FEATURE_PLAYBACK_NET" in project.defines:
  87. project.AddSources('hxntsrc.cpp', 'hxprotocol.cpp', 'rtspprotocol.cpp')
  88. if "HELIX_FEATURE_ADVANCEDGROUPMGR" in project.defines:
  89. project.AddSources('advgroup.cpp')
  90. if "HELIX_FEATURE_BASICGROUPMGR" in project.defines:
  91. project.AddSources('basgroup.cpp')
  92. if "HELIX_FEATURE_RESOURCEMGR" in project.defines:
  93. project.AddSources('hxresmgr.cpp')
  94. if "HELIX_FEATURE_SINKCONTROL" in project.defines:
  95. project.AddSources('sinkctl.cpp')
  96. if "HELIX_FEATURE_STATS" in project.defines:
  97. project.AddSources('statsmgr.cpp')
  98. if "HELIX_FEATURE_MASTERTAC" in project.defines:
  99. project.AddSources('hxtac.cpp')
  100. if "HELIX_FEATURE_ASM" in project.defines:
  101. project.AddSources('asm/hxsmstr.cpp', 'asm/createbwman.cpp',
  102.    'asm/hxsmutil.cpp')
  103. if "HELIX_FEATURE_HXSM2" in project.defines:
  104. project.AddSources('asm/hxsm2.cpp')
  105. else:
  106. project.AddSources('asm/hxsm.cpp')
  107. if "HELIX_FEATURE_HYPER_NAVIGATE" in project.defines:
  108. project.AddSources('hypernav/playhpnv.cpp', 'hypernav/hxhypnv.cpp', 'hypernav/thrhypnv.cpp')
  109. if "HELIX_FEATURE_NESTEDMETA" in project.defines:
  110. project.AddSources('perscmgr.cpp')
  111. if "HELIX_FEATURE_VIEWPORT" in project.defines:
  112. project.AddSources('viewport.cpp')
  113. if ('HELIX_FEATURE_HTTPCLOAK' in project.defines):
  114.         project.AddModuleLibraries('protocol/http[httplib]')
  115. if "HELIX_FEATURE_VIEWSOURCE" in project.defines:
  116. project.AddSources('viewsrc.cpp')
  117. if "HELIX_FEATURE_PREFETCH" in project.defines:
  118. project.AddSources('prefmgr.cpp')
  119. if "HELIX_FEATURE_NEXTGROUPMGR" in project.defines:
  120. project.AddSources('nxtgrmgr.cpp')
  121. if "HELIX_FEATURE_MEDIAMARKER" in project.defines:
  122. project.AddSources('mediamrk.cpp')
  123. if "HELIX_FEATURE_EVENTMANAGER" in project.defines:
  124. project.AddSources('eventmgr.cpp')
  125. if "HELIX_FEATURE_REVERTER" in project.defines:
  126. project.AddSources('dtrvtcon.cpp')
  127. if "HELIX_FEATURE_RECORDCONTROL" in project.defines:
  128.   project.AddSources('recordctl.cpp')
  129. if "HELIX_FEATURE_MIN_HEAP" in project.defines:
  130. project.AddDefines("HELIX_CONFIG_MIN_PCM_PUSHDOWN_BYTES")
  131. project.AddDefines("HELIX_CONFIG_LOW_HEAP_STREAMING")
  132. LibraryTarget("clntcorelib")
  133. DependTarget()