We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fbe46c7 commit a4c8760Copy full SHA for a4c8760
SConstruct
@@ -9,7 +9,12 @@ libname = "EXTENSION-NAME"
9
projectdir = "demo"
10
11
localEnv = Environment(tools=["default"], PLATFORM="")
12
-localEnv["build_profile"] = "build_profile.json"
+
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]
0 commit comments