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

Symbian

开发平台:

Visual C++

  1. # ***** BEGIN LICENSE BLOCK ***** 
  2. # Version: RCSL 1.0/RPSL 1.0 
  3. #  
  4. # Portions Copyright (c) 1995-2002 RealNetworks, Inc. All Rights Reserved. 
  5. #      
  6. # The contents of this file, and the files included with this file, are 
  7. # subject to the current version of the RealNetworks Public Source License 
  8. # Version 1.0 (the "RPSL") available at 
  9. # http://www.helixcommunity.org/content/rpsl unless you have licensed 
  10. # the file under the RealNetworks Community Source License Version 1.0 
  11. # (the "RCSL") available at http://www.helixcommunity.org/content/rcsl, 
  12. # in which case the RCSL will apply. You may also obtain the license terms 
  13. # directly from RealNetworks.  You may not use this file except in 
  14. # compliance with the RPSL or, if you have a valid RCSL with RealNetworks 
  15. # applicable to this file, the RCSL.  Please see the applicable RPSL or 
  16. # RCSL for the rights, obligations and limitations governing use of the 
  17. # contents of the file.  
  18. #  
  19. # This file is part of the Helix DNA Technology. RealNetworks is the 
  20. # developer of the Original Code and owns the copyrights in the portions 
  21. # it created. 
  22. #  
  23. # This file, and the files included with this file, is distributed and made 
  24. # available on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER 
  25. # EXPRESS OR IMPLIED, AND REALNETWORKS HEREBY DISCLAIMS ALL SUCH WARRANTIES, 
  26. # INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, FITNESS 
  27. # FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. 
  28. # Technology Compatibility Kit Test Suite(s) Location: 
  29. #    http://www.helixcommunity.org/content/tck 
  30. # Contributor(s): 
  31. #  
  32. # ***** END LICENSE BLOCK ***** 
  33. UmakefileVersion(2,1)
  34. # project.AddDefines("HELIX_FEATURE_MIN_HEAP")
  35. # project.AddDefines("HELIX_FEATURE_SERVER")
  36. # project.AddDefines("HELIX_FEATURE_TIMEDTEXT")
  37. # project.AddDefines("QTCONFIG_NO_PAGING")
  38. project.AddDefines("QTCONFIG_NO_ASYNC_PAGING")
  39. if not project.IsDefined("HELIX_FEATURE_MP4_FILEFORMAT_ALL") and 
  40.    not project.IsDefined("HELIX_FEATURE_SERVER") and 
  41.    not project.IsDefined("HELIX_FEATURE_ISMA") and 
  42.    project.IsDefined("HELIX_FEATURE_3GPP"):
  43.     project.AddDefines("HELIX_FEATURE_3GPPCLIENT_ONLY")
  44.     project.AddDefines("QTCONFIG_3GPPCLIENT_ATOMSET_ONLY")
  45. if not project.IsDefined("HELIX_FEATURE_3GPPCLIENT_ONLY"):
  46.     project.AddDefines("QTCONFIG_FSWITCHER")
  47.     project.AddDefines("QTCONFIG_ALLOW_EXTERNAL_DATAREFS")
  48. if project.IsDefined("HELIX_FEATURE_TIMEDTEXT"):
  49.     project.AddDefines("QTCONFIG_TIMEDTEXT_PACKETIZER")
  50. if project.IsDefined("HELIX_FEATURE_CONCAT_AMR_PKTS"):
  51.     project.AddDefines("QTCONFIG_CONCAT_PACKETIZER")
  52.     
  53. if project.IsDefined("HELIX_FEATURE_QUICKTIME"):
  54.     project.AddDefines("QTCONFIG_ALTERNATE_STREAMS")
  55. if project.IsDefined("HELIX_FEATURE_MP4_FILEFORMAT_ALL") or 
  56.    project.IsDefined("HELIX_FEATURE_SERVER"):
  57.     project.AddDefines("QTCONFIG_TRACK_CACHE")
  58. #   QTCONFIG_BFRAG is required if caching is on
  59.     project.AddDefines("QTCONFIG_BFRAG")
  60. #   project.AddDefines("QTCONFIG_BFRAG_FACTORY")
  61. #   project.AddDefines("QTFORCE_AVG_BITRATE_DELIVERY")
  62.     project.AddDefines("QTCONFIG_AUDIO_PACKETIZER")
  63.     project.AddDefines("QTCONFIG_VIDEO_PACKETIZER")
  64.     project.AddDefines("QTCONFIG_ALTERNATE_STREAMS")
  65.     project.AddDefines("QTCONFIG_SERVER")
  66.     project.AddDefines("QTCONFIG_RECUSRSION_PROTECTION")
  67.     project.AddDefines("QTCONFIG_SPEED_OVER_SIZE")
  68. if project.IsDefined("QTCONFIG_AUDIO_PACKETIZER") or 
  69.    project.IsDefined("QTCONFIG_VIDEO_PACKETIZER") or 
  70.    project.IsDefined("QTCONFIG_TIMEDTEXT_PACKETIZER") or 
  71.    project.IsDefined("QTCONFIG_CONCAT_PACKETIZER") :
  72.     project.AddDefines("QTCONFIG_PACKETIZER_FACTORY")
  73.    
  74. project.AddModuleIncludes(  "common/include",
  75.     "common/system/pub",
  76.     "common/container/pub",
  77.     "common/util/pub", 
  78.     "common/dbgtool/pub", 
  79.                             "common/runtime/pub",
  80.     "client/videosvc/include",
  81.     "client/common/container/pub",
  82.     "client/resource/pub",
  83.     "client/common/include",
  84.     "protocol/transport/rtp/include",
  85.     "protocol/sdp/pub",
  86.     "protocol/rtsp/pub",
  87.     "datatype/common/container/pub",
  88.     "datatype/common/util/pub",
  89.     "datatype/rm/include",
  90.     "datatype/rm/common/pub",
  91.     "datatype/mp4/common/pub",
  92.     "datatype/mp4/payload/pub",
  93.     "datatype/mp4/fileformat/hinttrack"
  94.     );
  95. project.AddIncludes(".")
  96. project.AddSources( 'qtbatom.cpp',
  97.     'qtatoms.cpp',
  98.     'atomizer.cpp',
  99.     'qttrack.cpp',
  100.     'qttrkmgr.cpp',
  101.     'qtatmmgs.cpp',
  102.     'qtffplin.cpp',
  103.     'mempager.cpp')
  104. if project.IsDefined("QTCONFIG_PACKETIZER_FACTORY"):
  105. project.AddSources( 'qtpacketizerfct.cpp')
  106. if project.IsDefined("QTCONFIG_FSWITCHER"):
  107. project.AddSources( 'fswtchr.cpp')
  108. else:
  109. project.AddSources( 'fswtchr_passthrough.cpp')
  110. if "QTCONFIG_BFRAG" in project.defines:
  111. project.AddSources( 'bfrag.cpp')
  112. if "QTCONFIG_BFRAG_FACTORY" in project.defines:
  113. project.AddSources( 'bfragfct.cpp')
  114. LibraryTarget('mp4fformatlib')
  115. DependTarget()