We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8e13217 commit f9ce1cfCopy full SHA for f9ce1cf
SConstruct
@@ -10,6 +10,12 @@ projectdir = "demo"
10
11
localEnv = Environment(tools=["default"], PLATFORM="")
12
13
+# Build profiles can be used to decrease compile times.
14
+# The file starts out empty, add to it as needed.
15
+# You can either specify "disabled_classes", OR
16
+# explicitly specify "enabled_classes" which disables all other classes.
17
+localEnv["build_profile"] = str("build_profile.json")
18
+
19
customs = ["custom.py"]
20
customs = [os.path.abspath(path) for path in customs]
21
build_profile.json
@@ -0,0 +1,4 @@
1
+{
2
+ "type": "feature_profile",
3
+ "disabled_classes": []
4
+}
0 commit comments