I want to integrate SVN into Eclipse and came across the Subclipse project. Got this working and was able to load an already checked-out project from disk.
However, the problem is that this is an out-of-source project, meaning that the source files are not in a subdirectory of the directory containing the Eclipse project file. This results in a copy of the source files in the Debug/Release folders where the object files are stored.
The directory tree is then as follows:
Project-root
|-- trunk
| \-- src
| +-- .svn (svn version control metadata)
| \-- source files (*.cpp/*.hpp)
|-- trunk_build
\-- src
+-- Eclipse project files
\-- binary files
Where I only an "[Source directory]" directory that showed the real source files (the path ''Project-root/trunk/''), and a "src" directory without source files, the latter now shows the copies of the source files. I am able to use Subclipse functionality, but have two copies of my source files on disk: on in the out-of-source dir (available via "[Source directory]" folder in Eclipse) and the other via a copy in the dir where the project is ("src" folder in Eclipse).
How can I integrate SVN in such an out-of-source build?
Basically, SubClipse copies the source files to the location of the Eclipse project (which, as seen in the code-tree above is in a different location).