Skip to content

Commit a4c8760

Browse files
committed
Add comment and wrap string in str
1 parent fbe46c7 commit a4c8760

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

SConstruct

+6-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,12 @@ libname = "EXTENSION-NAME"
99
projectdir = "demo"
1010

1111
localEnv = Environment(tools=["default"], PLATFORM="")
12-
localEnv["build_profile"] = "build_profile.json"
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")
1318

1419
customs = ["custom.py"]
1520
customs = [os.path.abspath(path) for path in customs]

0 commit comments

Comments
 (0)