aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorC4NCER2014-02-25 19:33:09 +1300
committerC4NCER2014-02-25 19:33:09 +1300
commit942f14747b704a665299aa2f82bbad6bc24a4b9d (patch)
tree2fe9463a2026a7634a9c3d1ce57371f19ea62aaf
parent06e358199f0c038e781753001d9292349f2040ad (diff)
downloadgodot-942f14747b704a665299aa2f82bbad6bc24a4b9d.tar.gz
godot-942f14747b704a665299aa2f82bbad6bc24a4b9d.tar.zst
godot-942f14747b704a665299aa2f82bbad6bc24a4b9d.zip
Switch from using deprecated Options class to Variables
-rw-r--r--SConstruct2
1 files changed, 1 insertions, 1 deletions
diff --git a/SConstruct b/SConstruct
index 93e48a069..4df8e0089 100644
--- a/SConstruct
+++ b/SConstruct
@@ -88,7 +88,7 @@ if profile:
elif os.path.isfile(profile+".py"):
customs.append(profile+".py")
-opts=Options(customs, ARGUMENTS)
+opts=Variables(customs, ARGUMENTS)
opts.Add('target', 'Compile Target (debug/profile/release).', "debug")
opts.Add('platform','Platform: '+str(platform_list)+'(sfml).',"")
opts.Add('python','Build Python Support: (yes/no)','no')