mirror of
https://github.com/godotengine/godot
synced 2024-11-05 16:53:09 +00:00
f34151ff0f
Done with `autopep8 --select=E7`, fixes: - E701 - Put colon-separated compound statement on separate lines. - E702 - Put semicolon-separated compound statement on separate lines. - E703 - Put semicolon-separated compound statement on separate lines. - E711 - Fix comparison with None. - E712 - Fix (trivial case of) comparison with boolean. - E713 - Fix (trivial case of) non-membership check. - E721 - Fix various deprecated code (via lib2to3).
22 lines
403 B
Python
22 lines
403 B
Python
#!/usr/bin/env python
|
|
|
|
Import('env')
|
|
|
|
env.scene_sources = []
|
|
env.add_source_files(env.scene_sources, "*.cpp")
|
|
|
|
Export('env')
|
|
|
|
SConscript('main/SCsub')
|
|
SConscript('gui/SCsub')
|
|
SConscript('3d/SCsub')
|
|
SConscript('2d/SCsub')
|
|
SConscript('animation/SCsub')
|
|
SConscript('audio/SCsub')
|
|
SConscript('resources/SCsub')
|
|
SConscript('io/SCsub')
|
|
|
|
|
|
lib = env.Library("scene", env.scene_sources)
|
|
|
|
env.Prepend(LIBS=[lib])
|