mirror of
https://github.com/godotengine/godot.git
synced 2025-10-19 16:03:29 +00:00
sort by the most recently accessed files
This commit is contained in:
parent
83291eab3a
commit
b40259096c
2 changed files with 12 additions and 12 deletions
18
methods.py
18
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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue