-
-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathnumdot_config.template.py
More file actions
27 lines (22 loc) · 776 Bytes
/
Copy pathnumdot_config.template.py
File metadata and controls
27 lines (22 loc) · 776 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# This function has to exist for SCons reasons.
def exists(env):
return True
def generate(env, features):
"""
Modify the prevalent features in the current build.
:param env: The SCons Environment object for this build.
:param features: The Features object for this build. You can find its definition in ./site_scons/site_tools/features.py.
"""
# Disable random functions
# features.disable(features.random)
# Enable just logical functions
# features.disable(features.all)
# features.enable(features.logical)
# Enable only sum function
# features.disable(features.all)
# features.enable("sum")
# Print all features.
# print(features.all)
# print(features.enabled)
# print(features.disabled)
pass