diff options
| author | Rhody Lugo | 2017-12-18 18:01:09 -0400 |
|---|---|---|
| committer | Rhody Lugo | 2017-12-18 22:17:38 -0400 |
| commit | b40259096c70a4d05695bf2fd0eac9a395f17f93 (patch) | |
| tree | 0dec489de2c9c83833a2876d96edbca4256525ea /methods.py | |
| parent | 83291eab3ae8940cc9da159774a1da6575196c89 (diff) | |
| download | godot-b40259096c70a4d05695bf2fd0eac9a395f17f93.tar.gz godot-b40259096c70a4d05695bf2fd0eac9a395f17f93.tar.zst godot-b40259096c70a4d05695bf2fd0eac9a395f17f93.zip | |
Diffstat (limited to 'methods.py')
| -rw-r--r-- | methods.py | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/methods.py b/methods.py index e861303e6..f9da6c8dd 100644 --- a/methods.py +++ b/methods.py @@ -1755,16 +1755,16 @@ def precious_program(env, program, sources, **args): return program def add_shared_library(env, name, sources, **args): - library = env.SharedLibrary(name, sources, **args) - env.NoCache(library) - return library + library = env.SharedLibrary(name, sources, **args) + env.NoCache(library) + return library def add_library(env, name, sources, **args): - library = env.Library(name, sources, **args) - env.NoCache(library) - return library + library = env.Library(name, sources, **args) + env.NoCache(library) + return library def add_program(env, name, sources, **args): - program = env.Program(name, sources, **args) - env.NoCache(program) - return program + program = env.Program(name, sources, **args) + env.NoCache(program) + return program |
