mirror of
https://github.com/Relintai/scons_gd.git
synced 2025-02-20 17:24:23 +01:00
10 lines
258 B
Plaintext
10 lines
258 B
Plaintext
|
from SCons.Script.SConsOptions import experimental_features
|
||
|
|
||
|
print("All Features=%s" % ','.join(sorted(experimental_features)))
|
||
|
|
||
|
DefaultEnvironment(tools=[])
|
||
|
env = Environment(tools=[])
|
||
|
|
||
|
exp = GetOption('experimental')
|
||
|
print("Experimental=%s" % sorted(exp))
|