diff options
author | Marc Gilleron <marc.gilleron@gmail.com> | 2021-02-03 22:48:58 +0000 |
---|---|---|
committer | Marc Gilleron <marc.gilleron@gmail.com> | 2021-02-03 22:48:58 +0000 |
commit | f66938081181226b4e7bd08a3213f7cdc4a0e0d5 (patch) | |
tree | c5dc376d81cb7ecb719ed9ed44d61ef449b61760 /SConstruct | |
parent | e2831ff5fab54a41e57976a529c6a42751a0a6c2 (diff) | |
download | redot-cpp-f66938081181226b4e7bd08a3213f7cdc4a0e0d5.tar.gz |
Generate bindings if they are not found
Diffstat (limited to 'SConstruct')
-rw-r--r-- | SConstruct | 14 |
1 files changed, 11 insertions, 3 deletions
@@ -123,10 +123,12 @@ opts.Add(PathVariable( None, PathVariable.PathIsFile )) -opts.Add(BoolVariable( +opts.Add(EnumVariable( 'generate_bindings', 'Generate GDNative API bindings', - False + 'auto', + allowed_values = ['yes', 'no', 'auto', 'true'], + ignorecase = 2 )) opts.Add(EnumVariable( 'android_arch', @@ -387,7 +389,13 @@ if 'custom_api_file' in env: else: json_api_file = os.path.join(os.getcwd(), env['headers_dir'], 'api.json') -if env['generate_bindings']: +if env['generate_bindings'] == 'auto': + # Check if generated files exist + should_generate_bindings = not os.path.isfile(os.path.join(os.getcwd(), 'src', 'gen', 'Object.cpp')) +else: + should_generate_bindings = env['generate_bindings'] in ['yes', 'true'] + +if should_generate_bindings: # Actually create the bindings here import binding_generator |