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