Browse Source

Json bindings are generated in cwd

Nickolai Korshunov 7 years ago
parent
commit
0fbfe5dd12
1 changed files with 1 additions and 1 deletions
  1. 1 1
      SConstruct

+ 1 - 1
SConstruct

@@ -44,7 +44,7 @@ add_sources(sources, "src/core")
 
 
 if ARGUMENTS.get("generate_bindings", "no") == "yes":
 if ARGUMENTS.get("generate_bindings", "no") == "yes":
     # TODO Generating the API should be done only if the Godot build is more recent than the JSON file
     # TODO Generating the API should be done only if the Godot build is more recent than the JSON file
-    json_api_file = 'godot_api.json'
+    json_api_file = os.path.join(os.getcwd(), 'godot_api.json')
 
 
     subprocess.call([os.path.expanduser(godot_bin_path), '--gdnative-generate-json-api', json_api_file])
     subprocess.call([os.path.expanduser(godot_bin_path), '--gdnative-generate-json-api', json_api_file])