Skip to content

Commit

Permalink
Add some command line parameters to overrule default paths
Browse files Browse the repository at this point in the history
  • Loading branch information
BastiaanOlij committed Sep 13, 2017
1 parent 5be9332 commit 9f8a93c
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 9f8a93c

Please sign in to comment.