summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile3
-rw-r--r--ivy-c++.readme7
2 files changed, 8 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 559803d..139f112 100644
--- a/Makefile
+++ b/Makefile
@@ -172,8 +172,7 @@ testIvyQt.moc: testIvyQt.cxx
moc $(QTOPT) $(QTINC) -i $< -o $@
testIvyQt : testIvyQt.cxx testIvyQt.moc
- g++ -g $(QTOPT) $(QTINC) $(QTLIB) $(LLDLIBS) -L$(PREFIX)/lib64 -lIvy_Qt -livy -o $@ testIvyQt.cxx
-
+ g++ -g $(QTOPT) $(QTINC) $(LLDLIBS) -o $@ testIvyQt.cxx -lIvy_Qt -livy $(QTLIB)
distclean clean :
rm -f $(LIBIVY_STATIC) $(LIBIVY_GLFW_STATIC) $(LIBIVY_SHARED) \
diff --git a/ivy-c++.readme b/ivy-c++.readme
index 31a80a9..92d238f 100644
--- a/ivy-c++.readme
+++ b/ivy-c++.readme
@@ -1,3 +1,10 @@
+some paquage are necessary to compile all the stuff :
+on ubuntu 14.10 :
+
+apt-get install libqt4-dev-bin libglfw-dev libqt4-dev
+
+
+
this is the c++ api for ivy.
It's a wrapper over ivy-c, so ivy-c should be installed prior this.