config.py 372 B

12345678910111213141516171819202122232425
  1. def can_build(env, platform):
  2. return True
  3. def get_opts(platform):
  4. from SCons.Variables import BoolVariable
  5. return [
  6. BoolVariable("graphite", "Enable SIL Graphite smart fonts support", True),
  7. ]
  8. def configure(env):
  9. pass
  10. def get_doc_classes():
  11. return [
  12. "TextServerAdvanced",
  13. ]
  14. def get_doc_path():
  15. return "doc_classes"