File tree Expand file tree Collapse file tree 2 files changed +17
-0
lines changed
Expand file tree Collapse file tree 2 files changed +17
-0
lines changed Original file line number Diff line number Diff line change @@ -10,6 +10,14 @@ projectdir = "demo"
1010
1111localEnv = Environment (tools = ["default" ], PLATFORM = "" )
1212
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+
1321customs = ["custom.py" ]
1422customs = [os .path .abspath (path ) for path in customs ]
1523
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