You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
496 B
25 lines
496 B
# Xournal++ Mac Build (development) |
|
|
|
**To create an .app see [Mac Setup](../mac-setup/README.md)** |
|
|
|
## Install Homebrew |
|
https://brew.sh/ |
|
|
|
````bash |
|
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" |
|
```` |
|
|
|
## Install dependencies |
|
````bash |
|
brew install cmake pkg-config gtk+3 poppler librsvg adwaita-icon-theme |
|
```` |
|
|
|
## Basic steps are: |
|
````bash |
|
git clone http://github.com/xournalpp/xournalpp.git |
|
cd xournalpp |
|
mkdir build |
|
cd build |
|
cmake .. |
|
make |
|
````
|
|
|