Wasn't sure if I should put this in the compiling spring thread or not. I have been using MSVS7 to develop, but I'm moving to a new computer (one I hope can run a certain unnamed game). I'm trying to get everything working on Eclipse CDT with Scons Builder plugin. I've had some troubles, but I can now run a file I get from a scons full build built by Eclipse. The problem is when I save a file. The builder runs a command with the following output:
Code: Select all
E:\Python24\scons.bat -u platform=win32 configuration=debug rts/Game/ConsoleHistory.cpp .
Code: Select all
scons: Entering directory `E:\eclipse\workspace\Spring'
scons: Reading SConscript files ...
make: Nothing to be done for `all'.
Succes building streflop!
scons: done reading SConscript files.
scons: Building targets ...
scons: building associated BuildDir targets: rts\Game\ConsoleHistory.cpp rts\Game\ConsoleHistory.cpp
scons: building terminated because of errors.
scons: *** Source `rts\Game\ConsoleHistory.cpp' not found, needed by target `build\rts\Game\ConsoleHistory.o'. Stop.
Running the same command outside of Eclipse gives the same results. Removing the . causes the build to complete successfully, but I don't think it is producing spring.exe at that point. Does someone more familiar with scons see the problem? Is the command itself valid?