Skip to content

Commit f9ce1cf

Browse files
committed
Add a build profile with no disabled classes and pass it by default
1 parent 8e13217 commit f9ce1cf

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

SConstruct

+6
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,12 @@ projectdir = "demo"
1010

1111
localEnv = Environment(tools=["default"], PLATFORM="")
1212

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+
1319
customs = ["custom.py"]
1420
customs = [os.path.abspath(path) for path in customs]
1521

build_profile.json

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"type": "feature_profile",
3+
"disabled_classes": []
4+
}

0 commit comments

Comments
 (0)