mirror of
https://github.com/godotengine/godot.git
synced 2024-11-15 00:23:27 +00:00
0fa94a9690
-=-=-=-=-=-=-=-=-=-= Build System: -Big clean up of SCons, changed how builds are done to a much cleaner method (check the Github Wiki for instructions). -Deactivated BlackBerry10 (sorry), if no mantainer found (or BlackBerry does not send us a Passort ;), platform will be removed as we have no longer devices to test. Engine: -Removed deprecated object and scene format (was in there just for compatibility, not in use since a long time). -Added ability to open scenes even if a node type was removed (will try to guess the closest type). -Removed deprecated node types.
21 lines
367 B
Plaintext
21 lines
367 B
Plaintext
Import('env')
|
|
|
|
env.tool_sources=[]
|
|
env.add_source_files(env.tool_sources,"*.cpp")
|
|
|
|
Export('env')
|
|
|
|
SConscript('editor/SCsub');
|
|
#SConscript('scintilla/SCsub');
|
|
SConscript('collada/SCsub');
|
|
SConscript('docdump/SCsub');
|
|
SConscript('freetype/SCsub');
|
|
SConscript('doc/SCsub');
|
|
SConscript('pck/SCsub');
|
|
|
|
lib = env.Library("tool",env.tool_sources)
|
|
|
|
env.Prepend(LIBS=[lib])
|
|
|
|
|