I have a problem to find where I change the build directory for my Eclipse (Helios) C++ project.
It has a fairly simple structure;
MyProject/
MyProject/src
MyProject/headers
MyProject/data/
MyProject/data/common
MyProject/data/debug
MyProject/data/release
MyProject/target
MyProject/target/debug
MyProject/target/elease
As you've probably guessed I want the binaries to end up in either
MyProject/target/debug
MyProject/target/release
But the above directories should also have contents of
MyProject/data/common // common files for both debug/release
MyProject/data/debug // only files for debug builds
MyProject/data/target // only files for release builds
(I hope I made sense there.)
Anyone who can give me a tip on how to perform this using the normal Eclipse CDT project?
Thank you.