Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update the build instructions to handle updated dependency versions #227

Open
wants to merge 2 commits into
base: develop
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 25 additions & 4 deletions BUILDING.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
Requirements
------------
- [Qt 5.4 or later](http://www.qt.io/)
- [Homebrew](https://brew.sh/)
- [Python 3](https://www.python.org/)
- [Boost.Python](http://www.boost.org/doc/libs/1_57_0/libs/python/doc/index.html) (linked against Python 3)
- [`libpng`](http://www.libpng.org/pub/png/libpng.html)
Expand All @@ -12,29 +13,49 @@ Requirements

Mac OS X
--------
Tested on Mac OS X 10.13.4 with [homebrew](http://brew.sh/) already installed:

Tested on Mac OS X 10.13.4 and Mac 10.15.6 (Catalina) with Python 3 and Homebrew installed:

1. Install dependencies:

```
brew install libpng
brew install python3
brew install boost-python3
brew install qt5
brew install lemon
brew install flex
brew install ninja
brew install cmake
```

2. Clone Antimony

```
git clone https://github.com/mkeeter/antimony
cd antimony
mkdir build
cd build
```

3. Build the app

cmake -DCMAKE_PREFIX_PATH=/usr/local/Cellar/qt/5.10.1 -GNinja ..
Note: the `cmake` command must note the exact version of Qt that you installed.

```
cd build
ls /usr/local/Cellar/qt
# use the number shown there in the next command in place of "5.15.1"
cmake -DCMAKE_PREFIX_PATH=/usr/local/Cellar/qt/5.15.1 -GNinja ..
ninja

```

4. Done! Open the app

```
open app/Antimony.app
```


--------------------------------------------------------------------------------

Linux
Expand Down