porymap/INSTALL.md
2020-04-25 16:27:12 -05:00

40 lines
696 B
Markdown

# Installation
porymap requires Qt 5.14.2 & C++11.
## macOS
The easiest way to get Qt is through [homebrew](https://brew.sh/).
Once homebrew is installed, run these commands in Terminal:
```
xcode-select --install
brew update
brew upgrade
brew install qt
git clone https://github.com/huderlem/porymap
cd porymap
qmake
make
./porymap.app/Contents/MacOS/porymap
```
## Windows
Install [Qt development tools](https://www.qt.io/download-qt-installer), and use Qt Creator, the official Qt IDE, for development purposes.
## Ubuntu
You need to install Qt 5. Qt 5.5 should be enough. You can check you Qt version
with `qtdiag`.
```
sudo apt-get install qt5-default
qmake
make
./porymap
```