diff options
author | Marc <marc.gilleron@gmail.com> | 2020-08-30 22:47:49 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-30 22:47:49 +0100 |
commit | d53b294f5b12878c8980746d2dc7c58dedb5201a (patch) | |
tree | 3528e7c414f21fa5714fd0c342638d29c2f32710 /SConstruct | |
parent | 3f72f5a8425e92d20b93b54899b508b15c0d46ca (diff) | |
parent | f71ccdfbcb4e87742c7dc4999649068781d22183 (diff) | |
download | redot-cpp-d53b294f5b12878c8980746d2dc7c58dedb5201a.tar.gz |
Merge pull request #450 from proxemy/master
Bugfix. Project generation now respects the given 'headers_dir' start…
Diffstat (limited to 'SConstruct')
-rw-r--r-- | SConstruct | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -359,7 +359,7 @@ json_api_file = '' if 'custom_api_file' in env: json_api_file = env['custom_api_file'] else: - json_api_file = os.path.join(os.getcwd(), 'godot_headers', 'api.json') + json_api_file = os.path.join(os.getcwd(), env['headers_dir'], 'api.json') if env['generate_bindings']: # Actually create the bindings here |