2016-10-17 06:50:25 +00:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
2020-03-30 06:28:32 +00:00
|
|
|
Import("env")
|
|
|
|
Import("env_modules")
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-12-13 14:45:37 +00:00
|
|
|
env_gridmap = env_modules.Clone()
|
|
|
|
|
2022-03-28 12:10:28 +00:00
|
|
|
# Godot's own source files
|
2017-12-13 14:45:37 +00:00
|
|
|
env_gridmap.add_source_files(env.modules_sources, "*.cpp")
|
2022-03-28 12:10:28 +00:00
|
|
|
if env["tools"]:
|
|
|
|
env_gridmap.add_source_files(env.modules_sources, "editor/*.cpp")
|