mirror of
https://github.com/godotengine/godot.git
synced 2026-01-05 06:11:29 +03:00
10 lines
185 B
Python
10 lines
185 B
Python
#!/usr/bin/env python
|
|
|
|
Import('env')
|
|
|
|
env.add_source_files(env.core_sources,"*.cpp")
|
|
env.add_source_files(env.core_sources,"*.c")
|
|
#env.core_sources.append("io/fastlz.c")
|
|
|
|
Export('env')
|