how do i compile a project with files/codes in a subversion..
suppose I have these files in a version control:
folder/implement.cpp
folder/head.hpp
I want to compile my main.cpp with these files
What I did is:
$ g++ main.cpp ../svn/folder/implement.cpp -I ../svn/folder/ -o main
It doesnt work...
Pls give me link that gives the complete codes on how to compile diff programs in c++.
tnx in advance...