Browse Source

Merge pull request #32 from BastiaanOlij/add_path_arguments

Add some command line parameters to overrule default paths
Thomas Herzog 8 years ago
parent
commit
cb5b80d421
1 changed files with 3 additions and 3 deletions
  1. 3 3
      SConstruct

+ 3 - 3
SConstruct

@@ -3,11 +3,11 @@ import os, subprocess
 
 
 
 
 # Local dependency paths, adapt them to your setup
 # Local dependency paths, adapt them to your setup
-godot_headers_path = "../godot_headers/"
-godot_bin_path = "../godot_fork/bin/"
+godot_headers_path = ARGUMENTS.get("headers", "../godot_headers/")
+godot_bin_path = ARGUMENTS.get("godotbinpath", "../godot_fork/bin/")
 
 
 # for windows
 # for windows
-godot_lib_path = "../godot_fork/bin/"
+godot_lib_path = ARGUMENTS.get("godotlibpath", godot_bin_path)
 
 
 target = ARGUMENTS.get("target", "debug")
 target = ARGUMENTS.get("target", "debug")
 platform = ARGUMENTS.get("p", "linux")
 platform = ARGUMENTS.get("p", "linux")