mirror of
https://github.com/godotengine/godot.git
synced 2024-11-10 06:03:09 +00:00
13 lines
293 B
Python
13 lines
293 B
Python
#!/usr/bin/env python
|
|
from misc.utility.scons_hints import *
|
|
|
|
Import("env")
|
|
Import("env_modules")
|
|
|
|
env_csg = env_modules.Clone()
|
|
|
|
# Godot source files
|
|
env_csg.add_source_files(env.modules_sources, "*.cpp")
|
|
if env.editor_build:
|
|
env_csg.add_source_files(env.modules_sources, "editor/*.cpp")
|