-
Notifications
You must be signed in to change notification settings - Fork 122
Building GameSense
IUDevman edited this page Mar 9, 2021
·
1 revision
In order to properly build GameSense (and other projects), Git BASH is required. You can download it here. You might also need JDK 8, which can be found here. An IDE such as IntelliJ is also recommended for editing, but not required for directly building.
Building (using command prompt):
- Open the command prompt and type
git clone https://github.com/IUDevman/gamesense-client
. This will create the project files in your defaultC:/users/User
directory. - Go to the newly created directory by typing
cd gamesense-client
. - Now run the task 'gradlew setupDecompWorkspace'. This may take a while, but that's alright.
- Once that is complete, run the task
gradlew clean build
. - The client is now built. You can run the release jar in minecraft. It can be found at
gamesense-client/build/libs/jar-release.jar
.