Umakefil.upp
Upload User: dangjiwu
Upload Date: 2013-07-19
Package Size: 42019k
Code Size: 1k
Category:

Symbian

Development Platform:

Visual C++

  1. ### UMAKE PRE-PROCESSOR OUTPUT: DO NOT CHECK INTO CVS
  2. ### -*- Mode: Python -*-
  3. ### files: Umakefil
  4. UmakefileVersion(2,0)
  5. execfile("../symbianplayer/install.pcf")
  6. pkgBaseName = GetInstallName('rplay')
  7. pkg = SymbianPkg(pkgBaseName, "RealPlayer", ["en"])
  8. pkg.SetHeader(['RealOne Player'], 0x10009D06, 4, 0, 0)
  9. pkg.AddPackageDependency(0x101F6F88, 0, 0, 0, 'Series60ProductID')
  10. for file in app_files_copy:
  11.     pkg.AddFile(file)
  12. for file in cfg_files_copy:
  13.     pkg.AddFile(file, 'data%s' % os.path.basename(file))
  14. for file in lib_files_copy:
  15.     pkg.AddFile(file, 'lib\%s' % os.path.basename(file))
  16. for file in mdl_files_copy:
  17.     pkg.AddFile(file, "!:\system\recogs\hxsymrecog.mdl")
  18. pkg.Generate()
  19. pkg.CreateMakefile()
  20. ### END UMAKE PRE-PROCESSOR OUTPUT