diff options
| author | Andreas Haas | 2017-12-13 15:45:37 +0100 |
|---|---|---|
| committer | Andreas Haas | 2017-12-13 15:46:35 +0100 |
| commit | 0e624234daaecbe5dee6bcaa37d7af21896e8bf6 (patch) | |
| tree | 39292c59bf02eb51ed091643fefce86243c06a32 /modules/gridmap | |
| parent | e7c1255b0688494033997eb1cf86afb8b7fc988a (diff) | |
| download | godot-0e624234daaecbe5dee6bcaa37d7af21896e8bf6.tar.gz godot-0e624234daaecbe5dee6bcaa37d7af21896e8bf6.tar.zst godot-0e624234daaecbe5dee6bcaa37d7af21896e8bf6.zip | |
Diffstat (limited to 'modules/gridmap')
| -rw-r--r-- | modules/gridmap/SCsub | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/modules/gridmap/SCsub b/modules/gridmap/SCsub index 088240676..2ffe15cd3 100644 --- a/modules/gridmap/SCsub +++ b/modules/gridmap/SCsub @@ -1,7 +1,10 @@ #!/usr/bin/env python Import('env') +Import('env_modules') -env.add_source_files(env.modules_sources, "*.cpp") +env_gridmap = env_modules.Clone() + +env_gridmap.add_source_files(env.modules_sources, "*.cpp") Export('env') |
