From 22a6213000c0f5f7f3fbf6da14e717ac1e360452 Mon Sep 17 00:00:00 2001 From: jacob1 Date: Sat, 29 Dec 2012 11:22:49 -0500 Subject: fix gravity.cpp error on windows with scons (but I still can't get it to work) diff --git a/SConscript b/SConscript index a8ad093..2ac687d 100644 --- a/SConscript +++ b/SConscript @@ -247,7 +247,7 @@ sources+=Glob("src/simulation/elements/*.cpp") sources+=Glob("src/simulation/tools/*.cpp") if(GetOption('win')): - sources = filter(lambda source: str(source) != 'src/simulation/Gravity.cpp', sources) + sources = filter(lambda source: str(source) != 'src\simulation\Gravity.cpp', sources) SetupSpawn(env) -- cgit v0.9.2-21-gd62e