-
Notifications
You must be signed in to change notification settings - Fork 26
Compiling
Steven Weiss edited this page Jan 21, 2018
·
6 revisions
From an admin Command Prompt, run:
# Install chocolatey
@"%SystemRoot%\System32\WindowsPowerShell\v1.0\powershell.exe" -NoProfile -InputFormat None -ExecutionPolicy Bypass -Command "iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))" && SET "PATH=%PATH%;%ALLUSERSPROFILE%\chocolatey\bin"
choco feature enable -n=allowGlobalConfirmation
# Install Maven, Git, and Inno Installer
choco install maven git InnoSetup
# Clone utsu and compile
git clone https://github.com/titinko/utsu.git
cd utsu
mvn package
# The installer will be in target/jfx/native/From a terminal, run the following:
# Install brew
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
# Install maven and git
brew install maven git
# Clone utsu and compile
git clone https://github.com/titinko/utsu.git
cd utsu
mvn package
# The dmg will be in target/jfx/native/# Install maven and git using your package manager
# Clone utsu and compile
git clone https://github.com/titinko/utsu.git
cd utsu
mvn package
# An installable package can be found in target/jfx/native/
# Alternatively, you can just unzip the zip file in target, and run with:
java -jar utsu.jar