Skip to content

Commit

Permalink
Merge pull request jcalifornia#32 from BastiaanOlij/add_path_arguments
Browse files Browse the repository at this point in the history
Add some command line parameters to overrule default paths
  • Loading branch information
karroffel authored Sep 13, 2017
2 parents 5be9332 + 9f8a93c commit cb5b80d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions SConstruct
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ import os, subprocess


# 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
godot_lib_path = "../godot_fork/bin/"
godot_lib_path = ARGUMENTS.get("godotlibpath", godot_bin_path)

target = ARGUMENTS.get("target", "debug")
platform = ARGUMENTS.get("p", "linux")
Expand Down

0 comments on commit cb5b80d

Please sign in to comment.