mirror of
https://github.com/godotengine/godot.git
synced 2024-11-10 14:12:51 +00:00
3334209a73
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
|