cfg_symbian.py 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. #
  2. # cfg_symbian.py - Symbian target configurator
  3. #
  4. # Copyright (C) 2008-2009 Teluu Inc. (http://www.teluu.com)
  5. #
  6. # This program is free software; you can redistribute it and/or modify
  7. # it under the terms of the GNU General Public License as published by
  8. # the Free Software Foundation; either version 2 of the License, or
  9. # (at your option) any later version.
  10. #
  11. # This program is distributed in the hope that it will be useful,
  12. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. # GNU General Public License for more details.
  15. #
  16. # You should have received a copy of the GNU General Public License
  17. # along with this program; if not, write to the Free Software
  18. # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  19. #
  20. import builder
  21. import os
  22. import sys
  23. # Each configurator must export this function
  24. def create_builder(args):
  25. usage = """\
  26. Usage:
  27. main.py cfg_symbian [-h|--help] [-t|--target TARGET] [cfg_site]
  28. Arguments:
  29. cfg_site: site configuration module. If not specified, "cfg_site"
  30. is implied
  31. -t,--target TARGET: Symbian target to build. Default is "gcce urel".
  32. Other values:
  33. "winscw udeb", "gcce udeb", etc.
  34. -h, --help Show this help screen
  35. """
  36. cfg_site = "cfg_site"
  37. target = "gcce urel"
  38. in_option = ""
  39. for arg in args:
  40. if in_option=="-t":
  41. target = arg
  42. in_option = ""
  43. elif arg=="--target" or arg=="-t":
  44. in_option = "-t"
  45. elif arg=="--help" or arg=="-h":
  46. print usage
  47. sys.exit(0)
  48. elif arg[0]=="-":
  49. print usage
  50. sys.exit(1)
  51. else:
  52. cfg_site = arg
  53. if os.access(cfg_site+".py", os.F_OK) == False:
  54. print "Error: file '%s.py' doesn't exist." % (cfg_site)
  55. sys.exit(1)
  56. cfg_site = __import__(cfg_site)
  57. test_cfg = builder.BaseConfig(cfg_site.BASE_DIR, \
  58. cfg_site.URL, \
  59. cfg_site.SITE_NAME, \
  60. cfg_site.GROUP, \
  61. cfg_site.OPTIONS)
  62. config_site1 = """\
  63. #define PJ_TODO(x)
  64. #include <pj/config_site_sample.h>
  65. """
  66. config_Site = config_site1 + cfg_site.CONFIG_SITE
  67. builders = [
  68. builder.SymbianTestBuilder(test_cfg,
  69. target=target,
  70. build_config_name="default",
  71. config_site=config_site1,
  72. exclude=cfg_site.EXCLUDE,
  73. not_exclude=cfg_site.NOT_EXCLUDE)
  74. ]
  75. return builders