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