summaryrefslogtreecommitdiff
path: root/ivy-c++.readme
diff options
context:
space:
mode:
Diffstat (limited to 'ivy-c++.readme')
-rw-r--r--ivy-c++.readme30
1 files changed, 30 insertions, 0 deletions
diff --git a/ivy-c++.readme b/ivy-c++.readme
new file mode 100644
index 0000000..31a80a9
--- /dev/null
+++ b/ivy-c++.readme
@@ -0,0 +1,30 @@
+this is the c++ api for ivy.
+
+It's a wrapper over ivy-c, so ivy-c should be installed prior this.
+
+It is api compatible with the native ivy c++ implementation for windows.
+
+make all produce :
+
+° libIvy.so
+ a shared lib whith his own mainloop for console app.
+
+° libIvy_Qt.so
+ a shared lib which integrate in the Qt framework.
+
+
+° libIvy_Xt.so
+ a shared lib which integrate in the X toolkit mainloop
+
+° libIvy_glfw.so
+ a shared lib which integrate with glfw framework, in this case, there is a local
+ ivy mainloop in a thread, and another gl thread which does the drawing, beware that
+ you cannot directly call openGl within callback called by the ivy thread !!
+
+° testIvyQt
+ a test which demonstrate how to use Ivy and Qt
+
+° testIvyXt
+ a test which demonstrate how to use Ivy and Xt
+
+