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

Ubuntu build notes #350

Open
wants to merge 2 commits into
base: master
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
13 changes: 13 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,3 +63,16 @@ For advanced users!
sudo make install

If you are building on a distribution which is not elementary, you need to add `-Dnoele=1` when running cmake.

### How to Build on Ubuntu
You need a couple of additional packages to be installed before you can build from source on Ubuntu 18.04

sudo apt-get install cmake pkg-config libgtk-3-dev libgranite-dev libmarkdown2-dev libgtkspell3-3-dev libsqlite3-dev libgtksourceview-3.0-dev libwebkit2gtk-4.0-dev valac
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Instead of having it's own section for building on Ubuntu, what about adding a box on the normal How To Build section, and adding the -Dnoele=1 arg to the cmake command? :)

git clone https://github.com/Philip-Scott/Notes-up
cd Notes-up
mkdir build && cd build
cmake -DCMAKE_INSTALL_PREFIX=/usr ../ -Dnoele=1
make
sudo make install