diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2018-06-22 09:44:45 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-06-22 09:44:45 +0200 |
commit | 8bf5b502223d48ee1b7b88ab8613be7bacbb63d2 (patch) | |
tree | 23dd684ad6876711a618bc73078d7fdbcc5abc62 /editor | |
parent | 2365fe472b0999100e76078d7b9f5e8f7fe2f9d5 (diff) | |
parent | 920224a535f7858dd4bf39f04e3c90c8276503c3 (diff) |
Merge pull request #19695 from rraallvv/nocache_gen_master
Add NoCache wrapper to Command (master)
Diffstat (limited to 'editor')
-rw-r--r-- | editor/SCsub | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/editor/SCsub b/editor/SCsub index c29da8dd8a..a9343f7f36 100644 --- a/editor/SCsub +++ b/editor/SCsub @@ -192,10 +192,10 @@ if env['tools']: docs = sorted(docs) env.Depends("#editor/doc_data_compressed.gen.h", docs) - env.Command("#editor/doc_data_compressed.gen.h", docs, make_doc_header) + env.CommandNoCache("#editor/doc_data_compressed.gen.h", docs, make_doc_header) # Certificates env.Depends("#editor/certs_compressed.gen.h", "#thirdparty/certs/ca-certificates.crt") - env.Command("#editor/certs_compressed.gen.h", "#thirdparty/certs/ca-certificates.crt", make_certs_header) + env.CommandNoCache("#editor/certs_compressed.gen.h", "#thirdparty/certs/ca-certificates.crt", make_certs_header) import glob path = env.Dir('.').abspath @@ -203,13 +203,13 @@ if env['tools']: # Translations tlist = glob.glob(path + "/translations/*.po") env.Depends('#editor/translations.gen.h', tlist) - env.Command('#editor/translations.gen.h', tlist, make_translations_header) + env.CommandNoCache('#editor/translations.gen.h', tlist, make_translations_header) # Fonts flist = glob.glob(path + "/../thirdparty/fonts/*.ttf") flist.append(glob.glob(path + "/../thirdparty/fonts/*.otf")) env.Depends('#editor/builtin_fonts.gen.h', flist) - env.Command('#editor/builtin_fonts.gen.h', flist, make_fonts_header) + env.CommandNoCache('#editor/builtin_fonts.gen.h', flist, make_fonts_header) env.add_source_files(env.editor_sources, "*.cpp") env.add_source_files(env.editor_sources, ["#thirdparty/misc/clipper.cpp"]) |