summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.gitignore1
-rw-r--r--README.md7
2 files changed, 8 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
index 98bd6b3..7957c8f 100644
--- a/.gitignore
+++ b/.gitignore
@@ -3,3 +3,4 @@ build-tikzit-*
*.pro.user
Makefile
tikzit.app
+target_wrapper.sh
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