Actions
Building » History » Revision 3
« Previous |
Revision 3/16
(diff)
| Next »
Sergey Smolov, 12/14/2015 04:23 PM
Building¶
For HDL Retrascope building and JUnit tests running we use Gradle. Please install it first.
Building and running HDL Retrascope from command line¶
To compile main classes run:
gradle classes
To compile testClasses run:
gradle testClasses
To run all unit tests run:
gradle test
To list all Gradle commands run:
gradle tasks
Building and running HDL Retrascope from Eclipse IDE¶
- Install Buildship Gradle integration plugin for Eclipse IDE.
- Create
init.gradle
file in the $HOME/.gradle directory and write the following to it:allprojects { apply plugin: ''eclipse'' it.eclipse { classpath.downloadJavadoc = true } }
- Import Retrascope sources into Eclipse workspace:
- Use the menu item "File/Import...".
- Choose "Gradle/Gradle Project".
- Select the "<retrascope>/trunk/retrascope" directory as the root directory, press "Next".
- Select the "Gradle wrapper (recommended)" import option.
- Press the "Finish" button: the project will be opened in the Eclipse IDE.
Updated by Sergey Smolov almost 9 years ago · 16 revisions