mirror of
https://github.com/godotengine/godot.git
synced 2025-02-07 19:30:52 +00:00
This allows to disable modules based on the environment, in particular `env[tools]` which tells us if we are building the editor or not.
6 lines
84 B
Python
6 lines
84 B
Python
def can_build(env, platform):
|
|
return env['tools']
|
|
|
|
def configure(env):
|
|
pass
|