Skip to content

Compiling

titinko edited this page Oct 18, 2020 · 6 revisions

Windows

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

# Clone utsu and compile
git clone https://github.com/titinko/utsu.git
cd utsu
mvn javafx:run

Mac OS

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 javafx:run

Linux

# Install maven and git using your package manager

# Clone utsu and compile
git clone https://github.com/titinko/utsu.git
cd utsu
mvn javafx:run