blob: 52777235b89c11670e2652569bef8fae044044fa (
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's own source files
env_gridmap.add_source_files(env.modules_sources, "*.cpp")
if env["tools"]:
env_gridmap.add_source_files(env.modules_sources, "editor/*.cpp")
|