-
Notifications
You must be signed in to change notification settings - Fork 0
/
SConstruct.py
120 lines (100 loc) · 1.97 KB
/
SConstruct.py
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
from miniscons import (
Build,
Routine,
Script,
Target,
Tasks,
conan,
packages,
flags,
)
from walkmate import tree
name = "caches"
conandeps = "build-release/conan/SConscript_conandeps"
env = conan(source=conandeps)
tests = Build(
"tests",
tree("src", r"\.cpp$"),
flags("c++11"),
packages(["gtest"], source=conandeps),
)
test = Target(
"test",
tests,
["--gtest_brief"],
)
includes = tests.packages["CPPPATH"]
cspell = Script(
"cspell",
["npx", "cspell", ".", "--dot", "--gitignore"],
)
cppclean = Script(
"cppclean",
["cppclean", "src"],
)
cppcheck = Script(
"cppcheck",
[
"cppcheck",
tree("src", r"\.(cpp)$"),
[f"-I{i}" for i in includes],
"--quiet",
"--enable=all",
"--suppressions-list=.cppcheck",
"--inline-suppr",
[f"--suppress=*:{i}/*" for i in includes],
],
)
clang_tidy = Script(
"clang-tidy",
["clang-tidy", tree("src", r"\.(cpp)$"), "--", [f"-I{i}" for i in includes]],
)
trufflehog = Script(
"trufflehog",
["trufflehog3", "-c", ".trufflehog3.yaml"],
)
clang_format = Script(
"clang-format",
["clang-format", "-i", tree(".", r"\.(cpp|hpp|tpp)$")],
)
prettier = Script(
"prettier",
["npx", "prettier", ".", "--write"],
)
doxygen = Script(
"doxygen",
["doxygen", "docs/doxygen/Doxyfile"],
)
breathe = Script(
"breathe",
[
"breathe-apidoc",
"./docs/doxygen/dist",
"--output-dir",
"docs/sphinx/dist",
"--members",
],
)
sphinx = Script(
"sphinx-build",
["sphinx-build", "docs/sphinx", "docs/dist"],
)
lint = Routine(
"lint",
[cspell, cppclean, trufflehog],
)
fmt = Routine(
"format",
[clang_format, prettier],
)
docs = Routine(
"docs",
[doxygen, breathe, sphinx],
)
cli = Tasks(
[tests],
[test],
[*lint.scripts, *fmt.scripts, *docs.scripts, cppcheck, clang_tidy],
[lint, fmt, docs],
)
cli.register(env)