I just started using SciTE and I really like it, but at the moment I'm having a bit of a problem.
When I make a simple "hello world" with just one file everything works just fine. But when I start to add other files I get problems linking causing undefined references.
g++ $(ccopts) -c $(FileNameExt) -o $(FileName).o
That's the command in my cpp.properties. Everything is at the default.
I have main.cpp and an a.cpp and a.h.
How can I configure this to account for multiple files?