We have a fairly large C/C++ project using scons for the building. I\'d like to go at an attempt to build this through Eclipse-CDT. Anyone have any experience with this and can
You can use a Makefile that simply delegates the important targets to scons
.PHONY: all clean install default: all all: scons clean: scons -c install: scons install
Then it is possible to use "Standard Make C Project" out of the box.