I am moving from clearcase-lite (CC-LT) to SVN.
In clearcase we link every C++ header file in central folder (Include) in order to simplify the make-file configuration. For example:
Folder1/a.h
Folder2/b.h
Folder3/c.h
Include/
a.h --> ../Folder3/a.h
b.h --> ../Folder3/b.h
c.h --> ../Folder3/c.h
And Make file contains:
-I../../Include
Currently, in clearcase, each link under Include folder is an element.
Now that we are moving to SVN I wonder if that is the best way to handle this.
Do I need to keep the same concept and import also the symlink files?