diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2020-07-28 00:30:55 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-28 00:30:55 +0200 |
commit | 5f28ab6566a4e12b802f06584ead65e640c295f1 (patch) | |
tree | 02d3d8969f9bf5d27fbeeaf2d02b43555b26666a /modules/gdnative | |
parent | 3edcccafd99aa76cc4fdd0585209e99189a3db55 (diff) | |
parent | d86de6c98e435d31bfdebc50d2db6d4d4048be40 (diff) |
Merge pull request #40771 from Xrayez/scons-verbose-builders
SCons: Refactor running commands through builders
Diffstat (limited to 'modules/gdnative')
-rw-r--r-- | modules/gdnative/SCsub | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/modules/gdnative/SCsub b/modules/gdnative/SCsub index cab05549d2..0e2291c1f9 100644 --- a/modules/gdnative/SCsub +++ b/modules/gdnative/SCsub @@ -22,13 +22,12 @@ SConscript("pluginscript/SCsub") SConscript("videodecoder/SCsub") -from platform_methods import run_in_subprocess import gdnative_builders _, gensource = env_gdnative.CommandNoCache( ["include/gdnative_api_struct.gen.h", "gdnative_api_struct.gen.cpp"], "gdnative_api.json", - run_in_subprocess(gdnative_builders.build_gdnative_api_struct), + env.Run(gdnative_builders.build_gdnative_api_struct, "Generating GDNative API."), ) env_gdnative.add_source_files(env.modules_sources, [gensource]) |