From 942f14747b704a665299aa2f82bbad6bc24a4b9d Mon Sep 17 00:00:00 2001 From: C4NCER Date: Tue, 25 Feb 2014 19:33:09 +1300 Subject: [PATCH] Switch from using deprecated Options class to Variables --- SConstruct | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SConstruct b/SConstruct index 93e48a069f..4df8e0089d 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')