-
Notifications
You must be signed in to change notification settings - Fork 4
Getting started with C³ Project
MikArber edited this page May 10, 2012
·
10 revisions
This article is providing you the steps to be performed in order to compile C³ project.
Install the following packages
- 1- install git : http://git-scm.com/downloads
- 2- create a git hub account : https://github.com/signup/free
- 3- install Eclipse : http://www.eclipse.org/downloads/packages/eclipse-classic-372/indigosr2
- 4- install JDK7 : http://www.oracle.com/technetwork/java/javase/downloads/jdk-7u4-downloads-1591156.html
Get the source code on your machine
- 5- copy the source locally : git clone [email protected]:CapCaval/C3.git
- 6- create an alias : git remote add c3_github [email protected]:CapCaval/C3.git
- 7- get the latest version from the new alias : git fetch c3_github
Launch the eclipse project
- 8- configure eclipse to use JDK7, from the following menu : "window/preferences/java/installed JRE/add"
- 9- load C³ project into eclipse, from :"File/Import../General/existing projects into workspace"
work on the source code
- 10- add a new file : git add NewClass.java
- 11- after the modifications are finished valide them : git commit -a
- 12- bring the modification back to github : git push