godot/scene/SCsub
Rémi Verschelde fc8ccd5b8c SCsub: Add python shebang as a hint for syntax highlighting
Also switch existing shebangs to "better" /usr/bin/env python.
2016-10-17 20:10:46 +02:00

23 lines
407 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])