blob: da3f7d4dd92339246b6be232e0c756d18f165eb2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/usr/bin/env python
Import("env")
Import("env_modules")
env_gridmap = env_modules.Clone()
# Godot source files
env_gridmap.add_source_files(env.modules_sources, "*.cpp")
if env["tools"]:
env_gridmap.add_source_files(env.modules_sources, "editor/*.cpp")
|