summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorAleks Kissinger <aleks0@gmail.com>2018-01-04 16:31:23 +0100
committerAleks Kissinger <aleks0@gmail.com>2018-01-04 16:31:23 +0100
commitb727ea087517adbd62fae7df3ca100718841adc4 (patch)
tree5be9836637016c3bedef39a0619d4617043ce6bb /README.md
parentae3f1cfde0626a61c3968a8d797a22ed9fd16175 (diff)
updated readme
Diffstat (limited to 'README.md')
-rw-r--r--README.md7
1 files changed, 7 insertions, 0 deletions
diff --git a/README.md b/README.md
index e79efea..c4ecfbc 100644
--- a/README.md
+++ b/README.md
@@ -17,9 +17,16 @@ You'll need Qt5 and poppler with Qt5 bindings. Qt5 can be installed using e.g. H
$ brew install qt5
+This doesn't add Qt binaries to the PATH by default, so you may wish to add this to your shell startup script:
+
+ export PATH="/usr/local/opt/qt/bin:$PATH"
+
Poppler should be built from source to get the Qt5 bindings. If Qt is setup correctly, the configure script included with Poppler should enable these automatically. Also, note that clang needs to have C++11 features enabled to build successfully. TikZiT has been tested on MacOS with poppler-0.50.0 (available <a href="https://poppler.freedesktop.org/releases.html">here</a>), built with the following commands:
$ CXXFLAGS="-std=c++11" ./configure
$ CXXFLAGS="-std=c++11" make
+Then, TikZiT is built just like a normal Qt project:
+ $ qmake
+ $ make