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

Symbian

开发平台:

Visual C++

  1. # -*- python -*-
  2. # ***** BEGIN LICENSE BLOCK *****
  3. # Source last modified: $Id: clntcoredll,v 1.16.4.3 2004/07/23 06:40:26 pankajgupta Exp $
  4. # Portions Copyright (c) 1995-2004 RealNetworks, Inc. All Rights Reserved.
  5. # The contents of this file, and the files included with this file,
  6. # are subject to the current version of the RealNetworks Public
  7. # Source License (the "RPSL") available at
  8. # http://www.helixcommunity.org/content/rpsl unless you have licensed
  9. # the file under the current version of the RealNetworks Community
  10. # Source License (the "RCSL") available at
  11. # http://www.helixcommunity.org/content/rcsl, in which case the RCSL
  12. # will apply. You may also obtain the license terms directly from
  13. # RealNetworks.  You may not use this file except in compliance with
  14. # the RPSL or, if you have a valid RCSL with RealNetworks applicable
  15. # to this file, the RCSL.  Please see the applicable RPSL or RCSL for
  16. # the rights, obligations and limitations governing use of the
  17. # contents of the file.
  18. # Alternatively, the contents of this file may be used under the
  19. # terms of the GNU General Public License Version 2 or later (the
  20. # "GPL") in which case the provisions of the GPL are applicable
  21. # instead of those above. If you wish to allow use of your version of
  22. # this file only under the terms of the GPL, and not to allow others
  23. # to use your version of this file under the terms of either the RPSL
  24. # or RCSL, indicate your decision by deleting the provisions above
  25. # and replace them with the notice and other provisions required by
  26. # the GPL. If you do not delete the provisions above, a recipient may
  27. # use your version of this file under the terms of any one of the
  28. # RPSL, the RCSL or the GPL.
  29. # This file is part of the Helix DNA Technology. RealNetworks is the
  30. # developer of the Original Code and owns the copyrights in the
  31. # portions it created.
  32. # This file, and the files included with this file, is distributed
  33. # and made available on an 'AS IS' basis, WITHOUT WARRANTY OF ANY
  34. # KIND, EITHER EXPRESS OR IMPLIED, AND REALNETWORKS HEREBY DISCLAIMS
  35. # ALL SUCH WARRANTIES, INCLUDING WITHOUT LIMITATION, ANY WARRANTIES
  36. # OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, QUIET
  37. # ENJOYMENT OR NON-INFRINGEMENT.
  38. # Technology Compatibility Kit Test Suite(s) Location:
  39. #    http://www.helixcommunity.org/content/tck
  40. # Contributor(s):
  41. # ***** END LICENSE BLOCK *****
  42. UmakefileVersion(2,2)
  43. project.AddModuleIncludes("common/include",
  44.                           "common/container/pub",
  45.                           "common/util/pub",
  46.                           "common/system/pub",
  47.                           "common/dbgtool/pub",
  48.                           "common/runtime/pub",
  49.                           "common/fileio/pub",
  50.                           "common/lang/xml/pub",
  51.                           "common/netio/pub",
  52.                           "protocol/transport/common/system/pub",
  53.                           "protocol/transport/rtp/pub",
  54.                           "protocol/common/util/pub",
  55.                           "protocol/rtsp/pub",
  56.                           "protocol/rtsp/include",
  57.                           "protocol/pna/pub",
  58.                           "protocol/sdp/pub",
  59.                           "audio/include",
  60.                           "video/include",
  61.                           "video/colconverter/pub")
  62. project.AddIncludes("../include",
  63.                     "../common/container/pub",
  64.                     "../common/util/pub",
  65.                     "../common/netio/pub",
  66.                     "../common/system/pub",
  67.                     "../audiosvc/pub",
  68.                     "../videosvc/pub",
  69.                     "../netwksvc/pub",
  70.                     "../resource/pub")
  71. project.AddModuleLibraries("common/dbgtool[debuglib]",
  72.                            "common/util[utillib]",
  73.                            "common/container[contlib]",
  74.                            "common/system[syslib]",
  75.                            "common/runtime[runtlib]",
  76.                            "common/fileio[fileiolib]",
  77.                            "client/common/system[sysclntlib]",
  78.                            "client/common/container[contclntlib]",
  79.                            "client/common/util[utlclntlib]",
  80.                            "client/core[clntcorelib]")
  81. if ('HELIX_FEATURE_AUDIO' in project.defines):
  82.         project.AddModuleLibraries("audio/device[auddevlib]",
  83.                                    "client/audiosvc[audsvclib]")
  84. if ('HELIX_FEATURE_GAINTOOL' in project.defines):
  85. project.AddModuleLibraries("audio/gaintool[audgainlib]" )
  86. if ('HELIX_FEATURE_CROSSFADE' in project.defines):
  87. project.AddModuleLibraries("audio/crossfade[audxfadelib]")
  88. if ('HELIX_FEATURE_LIMITER' in project.defines):
  89. project.AddModuleLibraries('audio/limiter[audlimiter]')
  90. if ('HELIX_FEATURE_VIDEO' in project.defines):
  91.         project.AddModuleLibraries("client/videosvc[vidsvclib]")
  92. if ('HELIX_FEATURE_PLAYBACK_NET' in project.defines):
  93.         project.AddModuleLibraries("client/netwksvc[netsvclib]",
  94.                                    "client/common/netio[netioclntlib]",
  95.                                    "protocol/transport/common/system[systranlib]",
  96.                                    "protocol/transport/rtp[rtptranlib]",
  97.                                    "protocol/common/util[protutillib]",
  98.                                    "protocol/rtsp[rtsplib]")
  99.         
  100.         # All platforms other than Symbian need the netio library
  101.         if not project.IsDefined("_SYMBIAN"):
  102.                 project.AddModuleLibraries("common/netio[netiolib]")
  103. if ('HELIX_CONFIG_FIXEDPOINT' in project.defines):
  104.         project.AddModuleLibraries('audio/fixptresampler[fixptresampler]')
  105. if ('HELIX_FEATURE_MIXER' in project.defines):
  106.         project.AddModuleLibraries('audio/mixer[audmixlib]')
  107. if ('HELIX_FEATURE_HTTPCLOAK' in project.defines):
  108.         project.AddModuleLibraries('protocol/http[httplib]')
  109. if ('HELIX_FEATURE_RESAMPLER' in project.defines):
  110.         project.AddModuleLibraries('audio/resampler[audresamplib]')
  111. if ('HELIX_FEATURE_RDT' in project.defines):
  112.         project.AddLibraries(GetSDKPath("prtclrdt_lib"))
  113. if ('HELIX_FEATURE_PNA' in project.defines):
  114.         project.AddLibraries(GetSDKPath("prtclpna_lib"))
  115.         # PNA uses functions from rmfftype.h. On platforms
  116.         # that have HELIX_FEATURE_NOINLINE defined you
  117.         # need to link against rmcomlib so that you can
  118.         # get the code for the inline functions in that header
  119.         # file.
  120.         if project.IsDefined("HELIX_FEATURE_NOINLINE"):
  121.             project.AddModuleLibraries("datatype/rm/common[rmcomlib]")
  122. if ('HELIX_FEATURE_XMLPARSER' in project.defines):
  123.         project.AddModuleLibraries('common/lang/xml[xmllib]')
  124. if "HELIX_FEATURE_MIN_HEAP" in project.defines:
  125.         project.AddDefines("HELIX_CONFIG_MIN_PCM_PUSHDOWN_BYTES")
  126. project.AddSources("dlliids.cpp",
  127.                    "hxdll.cpp")
  128. project.ExportFunction("CreateEngine",
  129.                        "IHXClientEngine** ppEngine",
  130.                        "common/include",
  131.                        "hxcore.h")
  132. project.ExportFunction("CloseEngine",
  133.                        "IHXClientEngine* pEngine",
  134.                        "common/include",
  135.                        "hxcore.h")
  136. project.ExportFunction("SetDLLAccessPath",
  137.                        "const char* pszPath")
  138. project.SetDLLTypeCommon()
  139. DLLTarget('clntcore')
  140. DependTarget()