-
Notifications
You must be signed in to change notification settings - Fork 7
Build
NOTE: This documentation is outdated and no longer relevant. It will be replaced in the near future.
This document assumes you have rudimentary knowledge of the Gradle build system. It is recommended you have a basic understanding of Gradle, dependency management, and building Java applications. You can learn more about Gradle here: http://gradle.org/docs/current/userguide/userguide_single.html.
This option is only presently available via the gradle branch, until it is merged with master.
gradlew build
To generate an Eclipse project run the following command:
gradlew eclipse
To generate an IntellIJ IDEA project run the following command:
gradlew idea
The following set of commands represents a full example of obtaining the latest source code, compiling the project, and running the RPG Toolkit Editor application:
git clone https://github.com/rpgtoolkit/editor.git
git checkout gradle
gradlew build
gradlew run
Assuming the build is successful, you can run the editor application with the command:
gradlew run