ya.make 736 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. PY3_LIBRARY()
  2. LICENSE(MIT)
  3. VERSION(5.4.1)
  4. PEERDIR(
  5. contrib/libs/yaml
  6. )
  7. ADDINCL(
  8. contrib/python/PyYAML/py3/yaml
  9. FOR cython contrib/python/PyYAML/py3
  10. )
  11. PY_SRCS(
  12. TOP_LEVEL
  13. _yaml/__init__.py
  14. yaml/__init__.py
  15. yaml/composer.py
  16. yaml/constructor.py
  17. yaml/cyaml.py
  18. yaml/dumper.py
  19. yaml/emitter.py
  20. yaml/error.py
  21. yaml/events.py
  22. yaml/loader.py
  23. yaml/nodes.py
  24. yaml/parser.py
  25. yaml/reader.py
  26. yaml/representer.py
  27. yaml/resolver.py
  28. yaml/scanner.py
  29. yaml/serializer.py
  30. yaml/tokens.py
  31. CYTHON_C
  32. yaml/_yaml.pyx
  33. )
  34. RESOURCE_FILES(
  35. PREFIX contrib/python/PyYAML/
  36. .dist-info/METADATA
  37. .dist-info/top_level.txt
  38. )
  39. NO_LINT()
  40. NO_COMPILER_WARNINGS()
  41. END()