File tree 2 files changed +17
-0
lines changed
2 files changed +17
-0
lines changed Original file line number Diff line number Diff line change @@ -10,6 +10,14 @@ projectdir = "demo"
10
10
11
11
localEnv = Environment (tools = ["default" ], PLATFORM = "" )
12
12
13
+ # Build profiles can be used to decrease compile times.
14
+ # You can either specify "disabled_classes", OR
15
+ # explicitly specify "enabled_classes" which disables all other classes.
16
+ # Modify the example file as needed and uncomment the line below or
17
+ # manually specify the build_profile parameter when running SCons.
18
+
19
+ # localEnv["build_profile"] = "build_profile.json"
20
+
13
21
customs = ["custom.py" ]
14
22
customs = [os .path .abspath (path ) for path in customs ]
15
23
Original file line number Diff line number Diff line change
1
+ {
2
+ "_" : " This is an example build profile and not used by default. See the SConstruct file for more information." ,
3
+ "type" : " feature_profile" ,
4
+ "enabled_classes" : [
5
+ " Node3D" ,
6
+ " ImageTexture" ,
7
+ " OS"
8
+ ]
9
+ }
You can’t perform that action at this time.
0 commit comments